-2

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]);
Sarita Sharma
  • 253
  • 2
  • 8
  • 19

1 Answers1

0

Don't use group by for pagination.

Sarita Sharma
  • 253
  • 2
  • 8
  • 19