summaryrefslogtreecommitdiff
path: root/resources/views/statistics/families/top10-nolist.phtml
blob: 52819270975973e2bb5d8e9aca7aab17cd86e74e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

declare(strict_types=1);

use Fisharebest\Webtrees\Family;
use Fisharebest\Webtrees\I18N;

/* @var array  $records */
/* @var Family $family */
?>

<?php foreach ($records as $record) : ?>
    <?php $family = $record['family']; ?>
    <a href="<?= e($family->url()) ?>"><?= $family->fullName() ?></a>
    - <?= I18N::plural('%s child', '%s children', $record['count'], I18N::number($record['count'])) ?>
<?php endforeach; ?>