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