Laravel Pagination links not including other GET parameters

前端 未结 12 656
遥遥无期
遥遥无期 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:04

    Not append() but appends() So, right answer is:

    {!! $records->appends(Input::except('page'))->links() !!}
    

提交回复
热议问题