827 0 0 0
Last Updated : 2025-04-28 21:48:40
In this snippet I will teach you how to add get parameters in laravel pagination
Hello guys,
This snippet is specially for search in laravel with pagination, as search functionality must have to be with GET method NOT POST as POST method is responsible for send data not displaying data like search
So in the blade view you will need to add URL parameters in pagination URLs, you could do this using this code in blade view like this
{{ $invoices->appends(request()->query())->links() }}