in your view where you display pagination...
{{ $results->appends(Request::except('page'))->links() }}
appends keeps the query string value except "page". not sure if it will work with post, but this is what i use for get. i hope this gives you a direction to check for a solution
w1n78 said:
in your view where you display pagination...
{{ $results->appends(Request::except('page'))->links() }}
appends keeps the query string value except "page". not sure if it will work with post, but this is what i use for get. i hope this gives you a direction to check for a solution
Thanks bro!
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community