29 lines
757 B
PHP
29 lines
757 B
PHP
@php
|
|
dump($cards);
|
|
@endphp
|
|
|
|
<x-layout.app>
|
|
<x-table.table>
|
|
<thead>
|
|
<tr>
|
|
<x-table.th>Room</x-table.th>
|
|
<x-table.th>Audition</x-table.th>
|
|
<x-table.th>Draw Number</x-table.th>
|
|
<x-table.th>Student</x-table.th>
|
|
<x-table.th>School</x-table.th>
|
|
</tr>
|
|
</thead>
|
|
<x-table.body>
|
|
@foreach($cards as $card)
|
|
<tr>
|
|
<td>{{$card->audition->room->name}}</td>
|
|
<td>{{ $card->audition->name }}</td>
|
|
<td>{{ $card->draw_number }}</td>
|
|
<td>{{ $card->student->full_name(true) }}</td>
|
|
<td>{{ $card->student->school->name }}</td>
|
|
</tr>
|
|
@endforeach
|
|
</x-table.body>
|
|
</x-table.table>
|
|
</x-layout.app>
|