xref: /webtrees/resources/views/expand-chart-box.phtml (revision d97083fe315dad9b7d0a150d4fb5f563e57d1869)
1<?php
2
3use Fisharebest\Webtrees\Fact;
4use Illuminate\Support\Collection;
5
6/**
7 * @var Collection<int,Fact> $facts
8 */
9
10?>
11<?php foreach ($facts as $fact) : ?>
12    <?= $fact->summary() ?>
13<?php endforeach;
14