Do you have installed a debugbar?
Maybe somthing wrong with your routes. Look in debugbar that you use the right controller.
Hi all, I used laravel pagination .. and it was working 100% ...
I didn't change anything in the code ..
The generated links are correct ... But when I choose next page or page number .. It doesn't change the content of the current page ....!!!
Ex:
... Controller
GetUsers method $users = User::paginate(10); return view('users.index',compact('users');
........ Index view
@foreach($users as $user) ... Display user data @endforeach
{!! $users->render() !!}
Any ideas ???
Please or to participate in this conversation.