17 lines
644 B
PHP
17 lines
644 B
PHP
<x-results.layout>
|
|
|
|
<nav class="h-full overflow-y-auto mt-3" aria-label="Directory">
|
|
@foreach($publishedAuditions as $audition)
|
|
<x-results.table-audition-section :auditionName="$audition->name">
|
|
@foreach($resultsSeatList[$audition->id] as $seat)
|
|
<x-results.table-seat-row
|
|
:seat="$seat['seat']"
|
|
:student_name="$seat['student']->full_name()"
|
|
:school="$seat['student']->school->name" />
|
|
@endforeach
|
|
</x-results.table-audition-section>
|
|
@endforeach
|
|
</nav>
|
|
|
|
</x-results.layout>
|