<h1>Meine Hunde</h1>
<figure>
<table class="table">
<thead>
<tr>
<th>
Foto
</th>
Name
Geburstag
Aktiv
Bearbeiten
Löschen
</tr>
</thead>
<tbody>
<?php foreach ($doggos as $dog) : ?>
<td>
<img src="<?= $dog['photo'] ?>/50x50/forcesize">
</td>
<?= escape($dog['name']); ?>
<?= escape($dog['birthday']); ?>
<?= escape($dog['active'])?'Ja':'Nein'; ?>
<button hx-get="/dogs/edit/<?= $dog['id'] ?>" hx-push-url="/dogs/edit/<?= $dog['id'] ?>" hx-target="#main" >Bearbeiten</button>
<button hx-get="/dogs/delete/<?= $dog['id'] ?>" hx-target="#main" hx-confirm="Bist du sicher, dass du <?= escape($dog['name']); ?> löschen willst">Löschen</button>
<?php endforeach; ?>
</tbody>
</table>
</figure>