29 lines
770 B
PHP
29 lines
770 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)
|
|
{{ dump($entry) }}
|
|
@endforeach
|
|
</div>
|
|
</x-card.card>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</x-layout.app>
|