retrofairie/resources/views/categories/index.blade.php
2025-02-20 21:25:58 -08:00

22 lines
431 B
PHP

<x-app-layout>
<x-slot:title>Categories</x-slot>
<div class="sunken-panel">
<table>
<thead>
<tr>
<th>Category</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@foreach ($categories as $category)
<tr>
<td>{{ $category->name }}</td>
<td></td>
</tr>
@endforeach
</tbody>
</table>
</div>
</x-app-layout>