{{-- resources/views/admin/athletes/_edit_history.blade.php --}}
| No | Kejuaraan & Lokasi | Nomor Lomba | Hasil (Mark) | Tanggal | Detail | Aksi |
|---|---|---|---|---|---|---|
| {{ $regularHistories->firstItem() + $index }} |
{!! highlightSearch($hist->competition_name, request('search_history')) !!}
{{ $hist->venue }}
|
@php $countries = config('countries'); @endphp
@if(isset($countries[$hist->country_code])) {{ $countries[$hist->country_code]['flag'] }} @endif
{{ $hist->country_code }}
|
{!! highlightSearch($hist->discipline->name ?? '-', request('search_history')) !!}
@if($hist->is_indoor)
(Indoor)
@endif
@if($hist->rankingCategory)
Kat: {{ $hist->rankingCategory->code }}
@endif
|
{{ $hist->result_mark }}
@if($hist->performanceRemarks->count() > 0)
@foreach($hist->performanceRemarks as $remark)
[{{ $remark->code }}]
@endforeach
@endif
@if($hist->score)
Skor WA: {{ $hist->score }}
@endif
|
{!! highlightSearch(\Carbon\Carbon::parse($hist->date)->format('d M Y'), request('search_history')) !!} |
Wind: {{ $hist->wind ?? 'NWI' }}
Babak: {{ $hist->round }}
Pos: {{ $hist->place ? '#'.$hist->place : '-' }}
|
|
|
|
||||||