50 lines
2.0 KiB
PHP
50 lines
2.0 KiB
PHP
@inject('doublerService','App\Services\DoublerService')
|
|
<x-layout.app>
|
|
<x-slot:page_title>Audition Seating - {{ $audition->name }}</x-slot:page_title>
|
|
|
|
<x-table.table>
|
|
<thead>
|
|
<tr>
|
|
<x-table.th>Rank</x-table.th>
|
|
<x-table.th>ID</x-table.th>
|
|
<x-table.th>Draw #</x-table.th>
|
|
<x-table.th>Student Name</x-table.th>
|
|
<x-table.th>Doubler</x-table.th>
|
|
{{-- @foreach($judges as $judge)--}}
|
|
{{-- <x-table.th>{{ $judge->short_name() }}</x-table.th>--}}
|
|
{{-- @endforeach--}}
|
|
<x-table.th>Total Score</x-table.th>
|
|
<x-table.th>All Scores?</x-table.th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<x-table.body>
|
|
@foreach($entries as $entry)
|
|
<tr>
|
|
<x-table.td>{{ $entry->rank }}</x-table.td>
|
|
<x-table.td>{{ $entry->id }}</x-table.td>
|
|
<x-table.td>{{ $entry->draw_number }}</x-table.td>
|
|
<x-table.td>
|
|
<span>{{ $entry->student->full_name() }}, </span>
|
|
<span class="text-xs text-gray-400">{{ $entry->student->school->name }}</span>
|
|
</x-table.td>
|
|
<x-table.td>
|
|
@if($doublerService->studentIsDoubler($entry->student_id))
|
|
<x-doubler-block :doublerEntryInfo="$doublerService->getDoublerInfo($entry->student_id)" />
|
|
@endif
|
|
|
|
{{-- @if($entry->is_doubler)--}}
|
|
{{-- <x-doubler-block :studentID="$entry->student->id" />--}}
|
|
{{-- @endif--}}
|
|
</x-table.td>
|
|
<x-table.td>{{ number_format($entry->final_score_array[0] ?? 0,4) }}</x-table.td>
|
|
<x-table.td>@if($entry->scoring_complete) <x-icons.checkmark color="green" /> @endif</x-table.td>
|
|
</tr>
|
|
@endforeach
|
|
</x-table.body>
|
|
</x-table.table>
|
|
|
|
|
|
|
|
</x-layout.app>
|