24 lines
881 B
PHP
24 lines
881 B
PHP
<x-layout.app>
|
|
<x-slot:page_title>{{ auditionSetting('advanceTo') }} Advancement - {{ $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.advancement.results-table')
|
|
</div>
|
|
<div class="ml-4">
|
|
{{-- @if($audition->hasFlag('seats_published'))--}}
|
|
{{-- @include('tabulation.auditionSeating-show-published-seats')--}}
|
|
{{-- @elseif(! $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>
|