Pagination for search results laravel 5.3

前端 未结 10 1382
无人及你
无人及你 2021-02-01 06:17

Pagination search results

I have just started with Laravel and I am trying to make a search function with proper pagination. The function works for page one but on pag

10条回答
  •  醉梦人生
    2021-02-01 06:54

    If you want to apply filters to the next page you should add them to your paginator like this:

    $product = Product::where('naam', 'LIKE', '%' . $q . '%')
            ->orWhere('beschrijving', 'LIKE', '%' . $q . '%')
            ->paginate(6);
    $product->appends(['search' => $q]);
    

    And change your route from post to get:

    Route::get('search', 'IndexController@search');
    

提交回复
热议问题