I 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]);
Don't use group by for pagination.