26 lines
748 B
PHP
26 lines
748 B
PHP
@inject('doublerService','App\Services\DoublerService')
|
|
@php
|
|
$blockSeating = []
|
|
@endphp
|
|
<x-layout.app>
|
|
<x-slot:page_title>Audition Seating - {{ $audition->name }}</x-slot:page_title>
|
|
<div class="grid grid-cols-4"></div>
|
|
<div class="grid grid-cols-4">
|
|
<div class="col-span-3">
|
|
@include('tabulation.auditionSeating-results-table')
|
|
</div>
|
|
<div class="ml-4">
|
|
@if(! $auditionComplete)
|
|
@include('tabulation.auditionSeating-unable-to-seat-card')
|
|
@else
|
|
@include('tabulation.auditionSeating-fill-seats-form')
|
|
@include('tabulation.auditionSeating-show-proposed-seats')
|
|
@endif
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</x-layout.app>
|