summaryrefslogtreecommitdiff
path: root/resources/views/test.phtml
blob: 944d5c713295cdfa1e2006d5b81970b91db9ed09 (plain)
1
2
3
4
5
6
7
8
9
<?php if (count($items) === 0) : ?>
    There are no items
<?php else : ?>
    <ol>
        <?php foreach ($items as $item) : ?>
          <li><?= $item ?></li>
        <?php endforeach ?>
    </ol>
<?php endif ?>