30 lines
876 B
PHP
30 lines
876 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">
|
|
@foreach($entries as $entry)
|
|
@if(! $entry->scoring_complete)
|
|
Entry {{ $entry->id }} is unscored.
|
|
@endif
|
|
@endforeach
|
|
</div>
|
|
</x-card.card>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</x-layout.app>
|