Refer to this link https://laravel.com/docs/5.7/pagination
Nov 29, 2018
9
Level 9
Change the number of results of a HasMany field
For Nova:
Is there a way to modify the number of paginated results returned by a HasMany field in the recource's detail view? (actually defaulting to 5 per page)
... and probibily adding some filtering features too ?
Level 50
Hi,
On your resource:
/**
* The number of resources to show per page via relationships.
*
* @var int
*/
public static $perPageViaRelationship = 5;
21 likes
Please or to participate in this conversation.