$files->flip()
Returns the elements in reverse order
$files->flip(): Kirby\Toolkit\Collection
Return type
Example
<ul>
<?php foreach($page->files()->flip() as $file): ?>
<li>
<a href="<?= $file->url() ?>">
<?= html($file->filename()) ?>
</a>
</li>
<?php endforeach ?>
</ul>
Inherited from
Kirby\Toolkit\Collection