Laravel Pagination links not including other GET parameters

前端 未结 12 636
遥遥无期
遥遥无期 2020-12-04 08:35

I am using Eloquent together with Laravel 4\'s Pagination class.

Problem: When there are some GET parameters in the URL, eg: http://site.com/u

12条回答
  •  不思量自难忘°
    2020-12-04 09:02

    I think you should use this code in Laravel 5. Also this will work not only with parameter page but also with any other parameter(s):

    $users->appends(request()->input())->links();
    

    Personally, I try to avoid using Facades as much as I can. Using global helper functions is less code and much elegant.

    UPDATE:

    Do not use Input Facade as it is deprecated in Laravel v6+

提交回复
热议问题