summaryrefslogtreecommitdiff
path: root/resources/views/record-page-details.phtml
blob: df978d9bfc88ce76169d42a7822bea1723d65633 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

use Fisharebest\Webtrees\GedcomRecord;

/**
 * @var GedcomRecord $record
 */

?>

<table class="table wt-facts-table">
    <?php foreach ($record->facts([], true) as $fact) : ?>
        <?= view('fact', ['fact' => $fact, 'record' => $record]) ?>
    <?php endforeach ?>
</table>