$pages->paginate()
Add pagination
$pages->paginate($arguments = null): Collection
Parameters
Name | Type | Default | Description |
---|---|---|---|
$arguments |
mixed |
null |
Return type
Collection
Examples
$arguments
is an option array
$articles = $page->children()->paginate([
'page' => 1,
'limit' => 10,
'total' => 120,
'method' => 'query',
'variable' => 'p'
]);
First argument is the limit
Show 10 items per page:
$articles = $page->children()->paginate(10);
First is the limit, second is the page
Show items 11-20:
$articles = $page->children()->paginate(10, 2);
First is the limit, second are options
$articles = $page->children()->paginate(10, […]);
Related
Check out the docs for the $pagination object
Inherited from
Kirby\Cms\Collection