blob: d9bf1e19c9a08736ea2eff81174f67cbf48a908d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
declare(strict_types=1);
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>
|