How to automatically append query string to laravel pagination links?

后端 未结 9 2006
失恋的感觉
失恋的感觉 2020-12-01 06:06

I am working on search filter on checkbox click, with Laravel and Ajax call. So I get results when I click on a checkbox. my query is as follows:

    $editor         


        
9条回答
  •  爱一瞬间的悲伤
    2020-12-01 07:07

    Append all input except the actual page, form token and what you don't want to pass:

    $paginatedCollection->appends(request()->except(['page','_token']));
    

提交回复
热议问题