{{-- resources/views/public/athlete_national_records.blade.php --}} @extends('layouts.pasi_public') @section('content')
Daftar pemegang Rekor Nasional (National Records) atletik Indonesia.
| Current Record Holder | Current Record (Mark) | Discipline | Record History (Previous) |
|---|---|---|---|
|
@if($mainAthlete->photo)
{{ $mainAthlete->name }}
{{ $mainAthlete->province_name }}
{{ $current->date ? $current->date->format('d M Y') : '-' }}
{{ $current->competition_name }}
|
{{ $current->result_mark }}
@foreach($current->performanceRemarks as $remark)
@if(str_starts_with($remark->code, 'NR') || $remark->code == 'NU18R')
{{ $remark->code }}
@endif
@endforeach
|
{{ $discipline->name }}
@if($discipline->gender == 'male')
PUTRA (MALE)
@elseif($discipline->gender == 'female')
PUTRI (FEMALE)
@else
CAMPURAN (MIX)
@endif
|
@if($histories && $histories->count() > 0)
@foreach($histories as $h)
@if($h && $h->athlete)
@else
{{-- Lingkaran Titik Timeline --}}
{{-- [PERBAIKAN] Foto Kecil Atlet --}}
@endif
@endforeach
@if($h->athlete->photo)
{{ $h->date ? $h->date->format('M Y') : '' }} • {{ Str::limit($h->competition_name, 35) }}
Belum ada riwayat pemecahan rekor
@endif
|
|
Data Kosong
Belum ada data Rekor Nasional untuk kategori {{ $age }} |
|||