@extends('admin.layouts.master') @section('title', 'Rekap Tahun ' . $tahun) @section('content')

Rekapitulasi Tahun {{ $tahun }}

@forelse ($rekap as $r) @empty @endforelse
Rank Peserta CU PI BI Total SAW Status CU Ronde
{{ $loop->iteration }} {{ $r->peserta->user->name ?? '-' }} {{ number_format($r->skor_cu_normal, 4) }} {{ number_format($r->skor_pi_normal, 4) }} {{ number_format($r->skor_bi_normal, 4) }} {{ number_format($r->total_akhir, 4) }} @if ($r->status_cu == 'lolos') Lolos @elseif ($r->status_cu == 'gagal') Gagal @else Pending @endif {{ $r->selection_round }}
Belum ada data rekap tahun ini.
{{-- Tombol Unduh di Bawah --}}
Unduh Excel
.xlsx format
Unduh PDF
.pdf format
@endsection