xref: /webtrees/resources/views/expand-chart-box.phtml (revision 74512d6ac146245d47cbb558ff0cd343f0619ee7)
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