$files->offset($offset)

Returns the collection starting from a given offset

  • return ($files)

Example

<ul>
  <?php foreach($page->files()->offset(10) as $file): ?>
  <li>
    <a href="<?= $file->url() ?>">
      <?= html($file->filename()) ?>
    </a>
  </li>
  <?php endforeach ?>
</ul>