$page->hasPrevUnlisted()
Checks if there's a previous unlisted page in the siblings collection
$page->hasPrevUnlisted(Kirby\Cms\Pages|null $collection = null): boolParameters
| 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->hasPrevUnlisted()) {
  echo $page->prevUnlisted()->url();
}With collection as argument
$collection = $page->siblings()->unlisted()->sortBy('date', 'desc');
if ($page->hasPrevUnlisted($collection)) {
  echo $page->prevUnlisted($collection)->url();
}