Level 75
https://laravel.com/docs/9.x/pagination#adjusting-the-pagination-link-window
{{ $users->onEachSide(2)->links() }}
i need max 5 link of pagination in every page. so if i have 10 page and when i click on link page 5 in the pagination next show me links 2 to 6 in the bottom of site
@edres What exactly didn't work?
public function showAllPost()
{
return view('back.post.posts', ['posts' => Post::paginate(3)]);
}
If it's not what you want then you can customize the pagination view
https://laravel.com/docs/9.x/pagination#customizing-the-pagination-view
Please or to participate in this conversation.