+
+
+
+
+
+
+ @if($ensemble)
+
+
+ {{ $ensemble->name }}
+
+
+ @if($ensemble->data['seated'] ?? false)
+
+ Clear Seats
+ @else
+
+ Seat
+ @endif
+
+
+
+
+
+ @if($ensemble->data['seated'] ?? false)
+ @foreach($ensemble->data['split_names'] as $split)
+
+ {{ $split }}
+ @foreach ($ensemble->data['instruments'] as $instrument)
+ @continue(! $nominations[$split]->has($instrument['name']))
+
+ {{ $instrument['name'] }}
+
+
+ @foreach($nominations[$split][$instrument['name']] as $thisNomination)
+ {{ $thisNomination->data['seat'] }} - {{ $thisNomination->student->full_name() }}, {{ $thisNomination->student->school->name }}
+
+ @endforeach
+
+ @endforeach
+
+
+ @endforeach
+ @endif
+
+ @endif
+
+
+
+
+