25 lines
1002 B
PHP
25 lines
1002 B
PHP
<x-layout.admin>
|
|
@foreach($ensembles as $ensemble)
|
|
<x-card class="mb-5">
|
|
<x-slot:header class="bg-brand-600!">{{ $ensemble->name }}</x-slot:header>
|
|
<x-slot:body class="bg-white border border-brand-600">
|
|
<x-table>
|
|
<x-slot:header>
|
|
<x-table.th></x-table.th>
|
|
@for($n=1; $n<= $ensemble->set_count; $n++)
|
|
<x-table.th>Set {{$n}}</x-table.th>
|
|
@endfor
|
|
</x-slot:header>
|
|
<tbody>
|
|
@foreach($instruments as $instrument)
|
|
<tr class="outline-1 outline-black/5 dark:outline-white/1">
|
|
<x-table.td>{{ $instrument->instrument }}</x-table.td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</x-table>
|
|
</x-slot:body>
|
|
</x-card>
|
|
@endforeach
|
|
</x-layout.admin>
|