23 lines
839 B
PHP
23 lines
839 B
PHP
<x-results.layout>
|
|
@php
|
|
dump($publishedAuditions);
|
|
@endphp
|
|
<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($audition->seats as $seat)
|
|
<x-results.table-seat-row
|
|
seat="d"
|
|
student_name="name"
|
|
school="school" />
|
|
@endforeach
|
|
</x-results.table-audition-section>
|
|
@endforeach
|
|
<x-results.table-audition-section audition-name="HS Flute">
|
|
<x-results.table-seat-row seat="Wind Ensemble 1" student_name="Matt Young" school="Chelsea"/>
|
|
</x-results.table-audition-section>
|
|
|
|
</nav>
|
|
|
|
</x-results.layout>
|