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