$file->next()
Returns the next item in the collection if available
$file->next(): Kirby\Cms\Model|null
Return type
Kirby\Cms\Model
|null
Example
if(($file = $page->file('my-file.pdf')) && $next = $file->next()):
echo 'Next file: ' . $next->filename();
endif;