Skip to content

Commit

Permalink
Update src/app/Views/Incidence/SeeAllIncidences.php
Browse files Browse the repository at this point in the history
Co-authored-by: Hugoo <[email protected]>
  • Loading branch information
elbacalau and 0x1026 authored Nov 18, 2024
1 parent 3e85452 commit 92eac1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/Views/Incidence/SeeAllIncidences.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<td class="px-6 py-4 border-b text-sm text-gray-700"><?php echo $incidence->name; ?></td>
<td class="px-6 py-4 border-b text-sm text-gray-700"><?php echo $incidence->element()->name; ?></td>
<td class="px-6 py-4 border-b text-sm text-gray-700"><?php echo $incidence->description; ?></td>
<td class="px-6 py-4 border-b text-sm text-gray-700"><?php echo $incidence->photo ? $incidence->photo : 'No photo'; ?></td>
<td class="px-6 py-4 border-b text-sm text-gray-700"><?php echo $incidence->photo ?? 'No photo'; ?></td>
<td class="px-6 py-4 border-b text-sm text-gray-700"><?php echo $incidence->getCreatedAt(); ?></td>
</tr>
<?php endforeach; ?>
Expand Down

0 comments on commit 92eac1b

Please sign in to comment.