Laravel Tutorials

Laravel 5.7: New Pagination Link Customizations

Published
Laravel 5.7: New Pagination Link Customizations image

Laravel 5.7 has a new pagination method to customize the number of links on each side of the paginator. Thanks to the new method you no longer need a custom pagination view in some cases. Here’s the API you can use to define the link count on each side of the current page:

<?php
 
User::paginate(10)->onEachSide(5);

Thanks to Michał Putkowski for the contribution, you should check it out to see the implementation. Here’s another visual of what you can expect with this feature, presented by Rachid Laasri:

A cool new @laravelphp 5.7 feature:

You can customize the number of pages to show on each side of the current page without having to extend the pagination view. ???? pic.twitter.com/P7ywcbqhHQ

— Rachid Laasri (@RashidLaasri) August 21, 2018

This new feature will be excellent to cut out the need for a custom template in some cases, but it’s still useful to know how to customize the pagination view.

Editors Note: At the time of writing the method was linksOnEachSide but it was later changed to onEachSide

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Sponsored

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
NativePHP v4: Build Native iOS and Android UI in Blade image

NativePHP v4: Build Native iOS and Android UI in Blade

Read article
Laravel Lock: Distributed Locks for Models and Routes image

Laravel Lock: Distributed Locks for Models and Routes

Read article
Laravel Image Responses: Serve Resized Images From Routes image

Laravel Image Responses: Serve Resized Images From Routes

Read article
Pause All Laravel Queues During a Deploy image

Pause All Laravel Queues During a Deploy

Read article
Laravel Terminal UI for the artisan dev Command image

Laravel Terminal UI for the artisan dev Command

Read article
Pause All Queues and a New artisan dev UI in Laravel 13.25 image

Pause All Queues and a New artisan dev UI in Laravel 13.25

Read article