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