1a60f9d1cSGreg Roach<?php 2a60f9d1cSGreg Roach 3c8d78f19SGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\TomSelectPlace; 4a60f9d1cSGreg Roachuse Fisharebest\Webtrees\Place; 5a60f9d1cSGreg Roachuse Fisharebest\Webtrees\Tree; 6a60f9d1cSGreg Roach 7a60f9d1cSGreg Roach/** 8a60f9d1cSGreg Roach * @var Place|null $place 9a60f9d1cSGreg Roach * @var string|null $class 10a60f9d1cSGreg Roach * @var string|null $id 11a60f9d1cSGreg Roach * @var string $name 12a60f9d1cSGreg Roach * @var Tree $tree 13a60f9d1cSGreg Roach */ 14a60f9d1cSGreg Roach 15a60f9d1cSGreg Roach?> 16a60f9d1cSGreg Roach 17a60f9d1cSGreg Roach<select 18a60f9d1cSGreg Roach autocomplete="off" 19c8d78f19SGreg Roach class="form-select tom-select <?= $class ?? '' ?>" 20*51b993abSGreg Roach data-url="<?= e(route(TomSelectPlace::class, ['tree' => $tree->name(), 'at' => ''])) ?>" 21a60f9d1cSGreg Roach id="<?= e($id ?? $name) ?>" 22a60f9d1cSGreg Roach name="<?= e($name) ?>" 23c8d78f19SGreg Roach <?= ($disabled ?? false) ? 'disabled="disabled"' : '' ?> 24c8d78f19SGreg Roach <?= ($required ?? false) ? 'required="required"' : '' ?> 25a60f9d1cSGreg Roach> 26a60f9d1cSGreg Roach <?php if (($place ?? null) instanceof Place) : ?> 27a60f9d1cSGreg Roach <option value="<?= e($place->id()) ?>"> 28a60f9d1cSGreg Roach <?= view('selects/place', ['place' => $place]) ?> 29a60f9d1cSGreg Roach </option> 30a60f9d1cSGreg Roach <?php else : ?> 31027478c2SGreg Roach <option value=""> </option> 32a60f9d1cSGreg Roach <?php endif ?> 33a60f9d1cSGreg Roach</select> 34