Everything looks correct. What does the url change from/to when you click the next page button?
Dec 21, 2022
15
Level 1
Pagination not working
Hello! I wanted to add pagination to my project and followed a tutorial for that. When I click new page the results are not changing.
In my Controller I added this $competitions = Competition::latest()->paginate(1);
Then into app/Providers/AppServiceProvider added this use Illuminate\Pagination\Paginator; and inside the boot function added this: Paginator::useBootstrap();
And the last thing was to add this {{ $competitions->onEachSide(1)->links() }} after I close my table in the blade file.
Can you please tell me what I did wrong? Any and all help gratefully received.
Please or to participate in this conversation.