retrofairie/resources/views/categories/index.blade.php
2025-02-21 11:35:53 -08:00

28 lines
735 B
PHP

<x-app-layout>
<x-slot:title>Categories</x-slot>
<div class="sunken-panel">
<table class="interactive">
<thead>
<tr>
<th>Category</th>
<th>Actions</th>
</tr>
</thead>
<tbody x-data="{ hovered: null }" x-on:mouseleave="hovered = null">
@foreach ($categories as $category)
<tr
id="{{ $category->id }}"
x-on:mouseenter="hovered = $event.target.id"
x-bind:class="{ 'highlighted': hovered === $el.id }"
>
<td>{{ $category->name }}</td>
<td></td>
</tr>
@endforeach
</tbody>
</table>
</div>
<a href="{{ route('categories.create') }}">New</a>
</x-app-layout>