22 lines
431 B
PHP
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>
|