10f5fd22fSGreg Roach<?php 20f5fd22fSGreg Roach 3*10e06497SGreg Roachdeclare(strict_types=1); 4*10e06497SGreg Roach 50f5fd22fSGreg Roachuse Fisharebest\Webtrees\GedcomRecord; 60f5fd22fSGreg Roach 70f5fd22fSGreg Roach/** 80f5fd22fSGreg Roach * @var GedcomRecord $record 90f5fd22fSGreg Roach */ 100f5fd22fSGreg Roach 110f5fd22fSGreg Roach?> 120f5fd22fSGreg Roach 130f5fd22fSGreg Roach<table class="table wt-facts-table"> 140f5fd22fSGreg Roach <?php foreach ($record->facts([], true) as $fact) : ?> 15b315f3e1SGreg Roach <?= view('fact', ['fact' => $fact, 'record' => $record]) ?> 160f5fd22fSGreg Roach <?php endforeach ?> 170f5fd22fSGreg Roach</table> 18