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->full_name() }}
{{ $entry->student->school->name }}
@if( isset($doubler_data[$entry->id]) ) {{-- Check if this entry is a doubler --}} @foreach($doubler_data[$entry->id]['entries'] as $de) {{-- If it is, render doubler blocks --}}
{{-- @var \App\Models\Entry $de --}}
{{ $de->audition->name }} #{{$de->draw_number}} ({{ $de->id }})
@php($unscored = $de->audition->unscoredEntries()->count()) @if($unscored > 0)
{{ $unscored }} Unscored Entries
@endif @if(! $de->rank('seating'))
THIS ENTRY NOT SCORED
@else
Ranked: {{ $de->rank('seating') }}
Acceptance Limits
@foreach ($de->audition->SeatingLimits as $limit) {{ $limit->ensemble->name }} -> {{ $limit->maximum_accepted }}
@endforeach
@endif
@endforeach @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 }} @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
Controls