Pagination for search results laravel 5.3

前端 未结 10 1387
无人及你
无人及你 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:47

    In your view file where you display pagination...

    {{ $results->appends(Request::except('page'))->links() }}
    

    appends keeps the query string value except "page".

提交回复
热议问题