32 lines
929 B
PHP
32 lines
929 B
PHP
@inject('doublerService','App\Services\DoublerService')
|
|
@php($blockSeating = [])
|
|
<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.audition-results-table')
|
|
</div>
|
|
<div class="ml-4">
|
|
<x-card.card>
|
|
<x-card.heading>
|
|
Seating Form
|
|
</x-card.heading>
|
|
<div class="pl-3">
|
|
@if(! $complete)
|
|
Unable to seat. Not all entries are scored.<br>
|
|
@endif
|
|
|
|
@if(! $doublerComplete)
|
|
Unable to seat. Not all doublers are resolved.<br>
|
|
@endif
|
|
</div>
|
|
</x-card.card>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</x-layout.app>
|