xref: /webtrees/resources/views/modals/shares.phtml (revision 36779af1bd0601de7819554b13a393f6edb92507)
1853f2b8aSGreg Roach<?php
2853f2b8aSGreg Roach
3*36779af1SGreg Roachuse Illuminate\Support\Collection;
4*36779af1SGreg Roach
5853f2b8aSGreg Roach/**
6*36779af1SGreg Roach * @var Collection<int,string> $shares
7853f2b8aSGreg Roach * @var string                 $title
8853f2b8aSGreg Roach */
9853f2b8aSGreg Roach
10853f2b8aSGreg Roach?>
11853f2b8aSGreg Roach<div class="modal fade" id="wt-shares-modal" tabindex="-1" role="dialog" aria-label="<?= e($title) ?>" aria-hidden="true">
12853f2b8aSGreg Roach    <div class="modal-dialog modal-lg" role="document">
13853f2b8aSGreg Roach        <div class="modal-content">
14853f2b8aSGreg Roach            <?= view('modals/header', ['title' => $title]) ?>
15853f2b8aSGreg Roach
16853f2b8aSGreg Roach            <div class="modal-body">
17853f2b8aSGreg Roach                <div class="wt-share-list">
18853f2b8aSGreg Roach                    <?php foreach ($shares as $share): ?>
19853f2b8aSGreg Roach                        <div class="wt-share-item">
20853f2b8aSGreg Roach                            <?= $share ?>
21853f2b8aSGreg Roach                        </div>
22853f2b8aSGreg Roach                    <?php endforeach ?>
23853f2b8aSGreg Roach                </div>
24853f2b8aSGreg Roach            </div>
25853f2b8aSGreg Roach
26853f2b8aSGreg Roach            <?= view('modals/footer-close') ?>
27853f2b8aSGreg Roach        </div>
28853f2b8aSGreg Roach    </div>
29853f2b8aSGreg Roach</div>
30