$file->hasPrev()
Checks if there's a previous item in the collection
$file->hasPrev(\Kirby\Cms\Collection|null $collection = null): boolParameters
| Name | Type | Default | 
|---|---|---|
| $collection | Kirby\Cms\Collection|null | null | 
Return type
bool
Parent class
Example
$file = $page->file('myfile.pdf');
if($file && $file->hasPrev()) {
    echo 'Previous file: ' . $file->prev()->filename();
}