17c2c99faSGreg Roach<?php 27c2c99faSGreg Roach 3*10e06497SGreg Roachdeclare(strict_types=1); 4*10e06497SGreg Roach 57c2c99faSGreg Roachuse Fisharebest\Webtrees\Note; 67c2c99faSGreg Roachuse Fisharebest\Webtrees\Tree; 77c2c99faSGreg Roachuse Illuminate\Support\Collection; 87c2c99faSGreg Roach 97c2c99faSGreg Roach/** 1036779af1SGreg Roach * @var Collection<int,Note> $notes 117c2c99faSGreg Roach * @var string $title 127c2c99faSGreg Roach * @var Tree $tree 137c2c99faSGreg Roach */ 147c2c99faSGreg Roach 157c2c99faSGreg Roach?> 16ff995987SGreg Roach<h2 class="wt-page-title"> 17ff995987SGreg Roach <?= $title ?> 18ff995987SGreg Roach</h2> 19ff995987SGreg Roach 20ff995987SGreg Roach<div class="wt-page-content"> 21ff995987SGreg Roach <?= view('lists/notes-table', ['notes' => $notes, 'tree' => $tree]) ?> 22ff995987SGreg Roach</div> 23