分页不适用于过滤器。点击第2页(带过滤器)将返回无过滤器的第2页

时间:2019-04-28 13:15:57

标签: php laravel pagination append laravel-pagination

我对分页有疑问。在将其与过滤器一起使用时,只有第一页有效。

控制器

public function create(Request $request)
{
    $products = Product::where(function($query) {
        //  filter category
        $category = Input::has('category')
            ? Input::get('category')
            : ['Clothes','Pants','Equipments','Shoes','Gears'];

        if (isset($category)) {
            $query->whereIn('category',$category);
        }

        // filter price
        $min_price = Input::has('min_price') ? Input::get('min_price') : 1 ;
        $max_price = Input::has('max_price') ? Input::get('max_price') : 999 ;
        if (isset($min_price) && isset($max_price)) {
            $query->where('price','>=',$min_price)
                ->where('price','<=',$max_price);
        }

        // filter brand
        $brand = Input::has('brand')
            ? Input::get('brand')
            : ['Adidas','Nike','Puma','Mizuno','Umbro','Line 7'];

        if (isset($brand)) {
            $query->whereIn('brand',$brand);
        }

        // filter store
        $store = Input::has('store')
            ? Input::get('store')
            : ['JD Sports Malaysia','SportsClick','Al-Ikhsan','Sports Wear','Sports Direct'];

        if (isset($store)) {
            $query->whereIn('store',$store);
        }

        //filter Gender
        $gender = Input::has('gender') 
            ? Input::get('gender') 
            : ['Male','Female','None'];

        if(isset($gender)){
            $query->whereIn('gender',$gender);
        }

        $search = Input::get('query');

        if (isset($search)) {
            $query->where('product','like',"%$search%")
                ->orWhere('brand', 'like', "%$search%")
                ->orWhere('category', 'like', "%$search%")->get();
        }
    })->paginate(12);

    return view('customer.category',compact('products'))->withProduct($products);
}

刀片

<!-- store bottom filter -->
<div class="store-filter clearfix mt-5">
    <span class="store-qty">Showing {{$products->count()}} Result(s)</span>
        <ul class="store-pagination" 
            {!! $products->links();!!}  
        </ul> 
    </div>
<!-- /store bottom filter -->

控制器代码是我获取过滤器输入的方式

视图就是我显示分页链接的方式

第2号及以上的页面应显示已过滤的产品

1 个答案:

答案 0 :(得分:0)

$products->links();更改为$products->appends($_GET)->links(),我想您会在链接中添加查询参数。