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