{{-- resources/views/admin/athletes/national_records.blade.php --}} @extends('admin.layouts.app') @section('content')
Daftar pemegang rekor nasional aktif dan sejarah pemecahannya.
| Pemegang Rekor Saat Ini | Nomor Lomba | Hasil (Mark) | Riwayat Sebelumnya |
|---|---|---|---|
|
{{ $mainAthlete->name }}
{{ $mainAthlete->province_name }}
{{ $current->date ? $current->date->format('d M Y') : '-' }} • {{ Str::limit($current->competition_name, 35) }}
|
{{ $discipline->name }}
@if($discipline->gender == 'male')
(Putra)
@elseif($discipline->gender == 'female')
(Putri)
@else
(Campuran)
@endif
|
{{ $current->result_mark }}
@foreach($current->performanceRemarks as $remark)
@if(str_starts_with($remark->code, 'NR') || $remark->code == 'NU18R')
[{{ $remark->code }}]
@endif
@endforeach
|
@if($histories && $histories->count() > 0)
@foreach($histories as $h)
@if($h && $h->athlete)
@else
{{ $h->result_mark }} oleh {{ $h->athlete->name }}
{{ $h->date ? $h->date->format('M Y') : '' }} • {{ Str::limit($h->competition_name, 35) }}
- Tidak ada riwayat -
@endif
|
|
Belum ada data Rekor Nasional untuk kategori {{ $age }}
|
|||