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
In your view file where you display pagination...
{{ $results->appends(Request::except('page'))->links() }}
appends keeps the query string value except "page".