fisharebest/webtrees

View on GitHub
resources/views/modules/repository-list/page.phtml

Summary

Maintainability
Test Coverage
<?php

declare(strict_types=1);

use Fisharebest\Webtrees\Repository;
use Fisharebest\Webtrees\Tree;
use Illuminate\Support\Collection;

/**
 * @var Collection<int,Repository> $repositories
 * @var string                     $title
 * @var Tree                       $tree
 */

?>
<h2 class="wt-page-title">
    <?= $title ?>
</h2>

<div class="wt-page-content">
    <?= view('lists/repositories-table', ['repositories' => $repositories, 'tree' => $tree]) ?>
</div>