Second page of pagination link is sending to original page in laravel

449 Views Asked by At

enter image description hereI have a form for searching data on search.blade.php (url :/search) and sending result to another view on the same URL. when I click on the 2nd link of Pagination Link bar(2 in the image) then it redirects from /search to /search?page=2 and no data display.

$users=   DB::table('user')->select('first_name','last_name')->where('city',$city)->groupby('user')->paginate(5);
return view('search_result',['users' => $users]);
1

There are 1 best solutions below

0
On BEST ANSWER

Don't use group by for pagination.