xref: /webtrees/resources/views/record-page-details.phtml (revision a81396241f8b2caf70988b1979e1927e5c8e9398)
1<?php
2
3declare(strict_types=1);
4
5use Fisharebest\Webtrees\GedcomRecord;
6
7/**
8 * @var GedcomRecord $record
9 */
10
11?>
12
13<table class="table wt-facts-table">
14    <?php foreach ($record->facts([], true) as $fact) : ?>
15        <?= view('fact', ['fact' => $fact, 'record' => $record]) ?>
16    <?php endforeach ?>
17</table>
18