Laravel Pagination Links not Including other GET Parameters
Let’s see how it works. This is the simple way of using the Laravel pagination method. The paginate method provided by Laravel.
->appends() can accept an array as a parameter, you could pass Input::except(‘page’)
{{ $results->appends(request()->except('page'))->links() }}