1853f2b8aSGreg Roach<?php 2853f2b8aSGreg Roach 3*10e06497SGreg Roachdeclare(strict_types=1); 4*10e06497SGreg Roach 536779af1SGreg Roachuse Illuminate\Support\Collection; 636779af1SGreg Roach 7853f2b8aSGreg Roach/** 836779af1SGreg Roach * @var Collection<int,string> $shares 9853f2b8aSGreg Roach * @var string $title 10853f2b8aSGreg Roach */ 11853f2b8aSGreg Roach 12853f2b8aSGreg Roach?> 13853f2b8aSGreg Roach<div class="modal fade" id="wt-shares-modal" tabindex="-1" role="dialog" aria-label="<?= e($title) ?>" aria-hidden="true"> 14853f2b8aSGreg Roach <div class="modal-dialog modal-lg" role="document"> 15853f2b8aSGreg Roach <div class="modal-content"> 16853f2b8aSGreg Roach <?= view('modals/header', ['title' => $title]) ?> 17853f2b8aSGreg Roach 18853f2b8aSGreg Roach <div class="modal-body"> 19853f2b8aSGreg Roach <div class="wt-share-list"> 20853f2b8aSGreg Roach <?php foreach ($shares as $share) : ?> 21853f2b8aSGreg Roach <div class="wt-share-item"> 22853f2b8aSGreg Roach <?= $share ?> 23853f2b8aSGreg Roach </div> 24853f2b8aSGreg Roach <?php endforeach ?> 25853f2b8aSGreg Roach </div> 26853f2b8aSGreg Roach </div> 27853f2b8aSGreg Roach 28853f2b8aSGreg Roach <?= view('modals/footer-close') ?> 29853f2b8aSGreg Roach </div> 30853f2b8aSGreg Roach </div> 31853f2b8aSGreg Roach</div> 32