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