-
Notifications
You must be signed in to change notification settings - Fork 46
Closed
Description
I followed the getting started guide and created posts schema and added a pagination by default 25
/**
* Get the resource paginator.
*
* @return Paginator|null
*/
public function pagination(): ?Paginator
{
return PagePagination::make()->withDefaultPerPage(25);
}
but when i visit /posts endpoint the response is returned without any pagination (even meta fields are not present in the response). But if I add the page size to the query /customers?page[size]=15 . It does get paginated
Metadata
Metadata
Assignees
Labels
No labels