{{$audition->name}} Recap
The final score is calculated by multiplying each subscore by its weight, the dividing the total by the total of the weights
#
Name
@foreach($subscores as $subscore)
{{ $subscore->name }}
Weight: {{ $subscore->weight }}
Max: {{ $subscore->max_score }}
@endforeach
Final
@foreach($recapRows as $row)
{{$row['rank']}}
{{$row['name']}}
{{$row['school']}}
@php ($ssOn = 1)
@foreach($subscores as $subscore)
{{ $row['scores'][$ssOn] }} ( {{ $subscoreOrdinals['entry'.$row['entryId']][$ssOn] }} )
@php ($ssOn++)
@endforeach
{{$row['total_score']}}
@endforeach