$page->grandChildren()

Returns a $pages collection with all children of children in the page's directory.

Example structure

Example code

<ul>
  <?php foreach(page('blog')->grandChildren() as $item): ?>
  <li>
    <a href="<?php echo $item->url() ?>">
      <?php echo html($item->title()) ?>
    </a>
  </li>
  <?php endforeach ?>
</ul>

Result

The code above will give you a list like this: