30 lines
1.3 KiB
PHP
30 lines
1.3 KiB
PHP
<x-card.card class="mb-6 mx-auto max-w-lg">
|
|
<x-card.heading>Ensembles for {{ $event->name }}</x-card.heading>
|
|
<x-table.table class="ml-3 sortable-table" id="event-{{$event->id}}">
|
|
|
|
<thead>
|
|
<tr>
|
|
<x-table.td> </x-table.td>
|
|
<x-table.th>Code</x-table.th>
|
|
<x-table.th>Name</x-table.th>
|
|
<x-table.th> </x-table.th>
|
|
</tr>
|
|
</thead>
|
|
<x-table.body>
|
|
@foreach($event->ensembles as $ensemble)
|
|
<tr data-id="{{ $ensemble->id }}">
|
|
<x-table.td class="handle">
|
|
<svg class="w-6 h-6 text-gray-800 dark:text-white" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
|
|
<path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M5 7h14M5 12h14M5 17h14"/>
|
|
</svg>
|
|
|
|
</x-table.td>
|
|
{{-- <x-table.td class="handle"><i class="fas fa-bars"></i></x-table.td>--}}
|
|
<x-table.td>{{ $ensemble->code }}</x-table.td>
|
|
<x-table.td>{{ $ensemble->name }}</x-table.td>
|
|
</tr>
|
|
@endforeach
|
|
</x-table.body>
|
|
</x-table.table>
|
|
</x-card.card>
|