xref: /webtrees/resources/views/modules/statistics-chart/families.phtml (revision 8add1155cb77caede54752196ff44696d1346431)
1<?php
2/** @var \Fisharebest\Webtrees\Stats $stats */
3?>
4
5<div class="container pt-3">
6    <?= view('statistics/families/total-records', ['stats' => $stats]) ?>
7    <?= view('statistics/families/marriage-length', ['stats' => $stats]) ?>
8    <?= view('statistics/families/marriage-age', ['stats' => $stats]) ?>
9    <?= view('statistics/families/birth-age', ['stats' => $stats]) ?>
10    <?= view('statistics/families/children', ['stats' => $stats]) ?>
11    <?= view('statistics/families/age-difference', ['stats' => $stats]) ?>
12</div>
13