$page->hasNext()
Checks if there's a next item in the collection
$page->hasNext(Kirby\Cms\Pages|null $collection = null): bool
Parameters
| Name | Type | Default |
|---|---|---|
| $collection | Kirby\Cms\Pagesornull |
null
|
Return type
bool
This method modifies the existing $page object it is applied to and returns it again.
Parent class
Examples
if ($page->hasNext()) {
echo $page->next()->url();
}
With collection as argument
By default, this method checks the page's siblings collection. Collection operations such as sorting, filtering, adding or merging return a new collection and don't change the page's sibling context. Pass the resulting collection to check whether there is a next page in that specific collection.
$collection = $page->siblings()->sortBy('date', 'desc');
if ($page->hasNext($collection)) {
echo $page->next($collection)->url();
}