auditionadmin/resources/views/tabulation/auditionSeating.blade.php

28 lines
883 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($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>