$page->hasPrev()
Checks if there's a previous item in the collection
$page->hasPrev(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
<?php
if ($page->hasPrev()) {
echo $page->prev()->url();
}
With collection as argument
<?php
$collection = $page->siblings()->sortBy('date', 'desc');
if ($page->hasPrev($collection)) {
echo $page->prev($collection)->url();
}
?>