Posts Learn Components Snippets Categories Tags Tools About
/

How to Increase Laravel Nova Pagination Size?

Learn how to increase the default pagination limit size in laravel nova

Created on Jul 07, 2021

914 views

To increase the per page size of the pagination in Laravel Nova, you can make use of the "perPageOptions" property.

/**
 * The pagination per-page options configured for this resource.
 *
 * @return array
 */
public static $perPageOptions = [50, 100, 150];

If you like our tutorial, do make sure to support us by being our Patreon or buy us some coffee ☕️

Load comments for How to Increase Laravel Nova Pagination Size?

)