summaryrefslogtreecommitdiff
path: root/public/app/views/group.php
blob: 5d5dea0e7ac69aa55b9f7c8b338c9519350b867b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<section>
  <div style="padding: 1em">

    <?php foreach ($group as $item) : ?>

        <div style="padding: 1em">
            <?php render_view('item', ['item' => $item]) ?>
        </div>

    <?php endforeach; ?>

  </div>
</section>