1<?php 2 3declare(strict_types=1); 4 5use Fisharebest\Webtrees\Statistics; 6 7/** 8 * @var Statistics $stats 9 */ 10 11?> 12 13<div class="container pt-3"> 14 <?= view('statistics/other/total-records', ['stats' => $stats]) ?> 15 <?= view('statistics/other/total-events', ['stats' => $stats]) ?> 16 <?= view('statistics/other/chart-objects', ['stats' => $stats]) ?> 17 <?= view('statistics/other/chart-sources', ['stats' => $stats]) ?> 18 <?= view('statistics/other/places', ['stats' => $stats]) ?> 19 <?= view('statistics/other/chart-distribution', ['stats' => $stats]) ?> 20</div> 21