Audition Seating - {{ $audition->name }}
{{-- Entry Ranking Table --}} {{-- Scored Entries --}} Scored Entries Rank ID Draw # Student Doubler Total Score @if($audition->bonusScore()->count() > 0)
Has Bonus
@endif
@foreach($scored_entries as $entry) {{ $loop->iteration }} {{ $entry->id }} {{ $entry->draw_number }}
{{ $entry->student->school->name }}
@php($doubler = $doublerData->get($entry->student_id)) @if($doubler) @if($doubler->accepted_entry == $entry->id) ACCEPTED @elseif($entry->hasFlag('declined')) DECLINED @else @if($request = $entry->student->doublerRequests()->where('event_id',$entry->audition->event_id)->first())
{{-- Begin block seating request --}}
Request

{{ $request->request }}

@endif @foreach($entry->student->entriesForEvent($entry->audition->event_id) as $de) @include('tabulation.auditionSeating-doubler-block') @endforeach @endif @endif
{{ $entry->totalScore->seating_total }} @endforeach
{{-- Unscored Entries --}} Unscored Entries Draw # ID Student @foreach($unscored_entries as $entry) {{ $entry->draw_number }} {{ $entry->id }} {{ $entry->student->full_name() }} {{ $entry->student->school->name }} Record No Show @endforeach {{-- No Show Entries --}} No Show Entries Draw # ID Student @foreach($noshow_entries as $entry) {{ $entry->draw_number }} {{ $entry->id }} {{ $entry->student->full_name() }} {{ $entry->student->school->name }} @endforeach {{-- Failed Prelim Entries --}} Failed Prelim Entries Draw # ID Student @foreach($failed_prelim_entries as $entry) {{ $entry->draw_number }} {{ $entry->id }} {{ $entry->student->full_name() }} {{ $entry->student->school->name }} @endforeach
{{-- TODO: Add in bulk delince doubler option --}} @if($unscored_entries->count() > 0) Cannot seat the audition while entries are unscored. @endif
@if($doublerData->contains('accepted_entry', null)) Cannot seat the audition while there are unresolved doublers. @endif