Judging Dashboard
{{ $audition->name }}
Entry
@foreach($subscores as $subscore)
{{ $subscore->name }}
@endforeach
@if(auditionSetting('advanceTo') and $audition->for_advancement)
{{ auditionSetting('advanceTo') }}
@endif
Timestamp
@foreach($entries as $entry)
{{ $audition->name }} {{ $entry->draw_number }}
@foreach($subscores as $subscore)
@php
if( $x = Auth::user()->scoresForEntry($entry->id)) echo $x[$subscore->id]['score'];
@endphp
@endforeach
@if(auditionSetting('advanceTo') and $audition->for_advancement)
@if($votes->contains('entry_id', $entry->id))
@php
$vote = $votes->where('entry_id',$entry->id)->first();
@endphp
@switch($vote->vote)
@case('yes')
@break
@case('no')
@break
@case('dq')
@break
@endswitch
@endif
@endif
{{ Auth::user()->timeForEntryScores($entry->id)?->setTimezone('America/Chicago')->format('m/d/y H:i') }}
@endforeach