{{-- Scored Entries --}} Scored Entries Rank ID Draw # Student Doubler @if($audition->prelimDefinition) Prelim Score @endif Total Score @if($audition->bonusScore()->count() > 0)
No Bonus Score
@endif
@foreach($scored_entries as $entry) {{ $entry->seatingRank }} {{ $entry->id }} {{ $entry->draw_number }}
{{ $entry->student->full_name() }}
{{ $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.seating-page.doubler-block') @endforeach @endif @endif
@if($audition->prelimDefinition) {{ round($entry->prelimTotalScore(),2) }} @endif @if($audition->bonusScore()->count() > 0) @if($entry->totalScore->bonus_total) {{ $entry->totalScore->seating_total_with_bonus }} @else {{ $entry->totalScore->seating_total_with_bonus }} @endif @else {{ $entry->totalScore->seating_total }} @endif @endforeach