19 lines
767 B
PHP
19 lines
767 B
PHP
<x-layout.app>
|
|
<x-slot:page_title>Seating Limits</x-slot:page_title>
|
|
<x-card.card class="mx-auto max-w-md">
|
|
<x-card.heading>Choose Ensemble</x-card.heading>
|
|
<div class="p-3">
|
|
<x-form.select
|
|
name="ensemble"
|
|
x-data="{ }"
|
|
x-on:change="window.location.href =
|
|
`{{ route('admin.ensembles.seatingLimits') }}/${event.target.value}`">
|
|
<option value=""></option>
|
|
@foreach($ensembles as $optionEnsemble)
|
|
<option value ="{{$optionEnsemble->id}}">{{$optionEnsemble->event->name}} - {{$optionEnsemble->name}}</option>
|
|
@endforeach
|
|
</x-form.select>
|
|
</div>
|
|
</x-card.card>
|
|
</x-layout.app>
|