Returns the collection without a given file. The ignored file can be passed by filename or entire file object.
<ul>
<?php foreach($page->files()->not('ignored-file.pdf') as $file): ?>
<li>
<a href="<?php echo $file->url() ?>">
<?php echo html($file->filename()) ?>
</a>
</li>
<?php endforeach ?>
</ul>