10f5fd22fSGreg Roach<?php 20f5fd22fSGreg Roach 3*10e06497SGreg Roachdeclare(strict_types=1); 4*10e06497SGreg Roach 5a53fba7eSGreg Roachuse Fisharebest\Webtrees\Individual; 60f5fd22fSGreg Roach 70f5fd22fSGreg Roach/** 8a53fba7eSGreg Roach * @var Individual $record 90f5fd22fSGreg Roach */ 100f5fd22fSGreg Roach?> 110f5fd22fSGreg Roach 120f5fd22fSGreg Roach<!-- Name accordion --> 130f5fd22fSGreg Roach<div class="col-sm accordion" id="individual-names"> 14a53fba7eSGreg Roach <?php foreach ($record->facts(['NAME']) as $fact) : ?> 15a72fff1fSGreg Roach <?= view('individual-page-name', ['fact' => $fact]) ?> 160f5fd22fSGreg Roach <?php endforeach ?> 170f5fd22fSGreg Roach 18a53fba7eSGreg Roach <?php foreach ($record->facts(['SEX']) as $fact) : ?> 19a72fff1fSGreg Roach <?= view('individual-page-sex', ['fact' => $fact]) ?> 200f5fd22fSGreg Roach <?php endforeach ?> 210f5fd22fSGreg Roach</div> 22