Hey @smartrahat.
You have to append the extra parameters to the pagination.
$invoices->appends(Input::except('page'))
That will append all the parameters except "page", that is already included.
Hope this make sense.
Thank you very much. It works perfectly. I used it in my view page. like this:
{!! $invoices->appends(Input::except('page'))->render() !!}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community