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