@extends('admin.layouts.master') @section('title', 'Dashboard Admin') @section('page-title', 'Dashboard') @section('content')
Peserta

{{ $totalPeserta }}

Total Berkas

{{ $totalBerkas }}

Pending: {{ $pendingBerkas }}
Pemenang Teratas
@foreach ($winners as $index => $win)
#{{ $index + 1 }}

{{ $win->peserta->user->name }}

Skor: {{ number_format($win->total_akhir, 2) }}

@endforeach

Berkas Terbaru

@foreach ($latestSubmissions as $i => $sub) @endforeach
No Nama File Status Aksi
{{ $i + 1 }} {{ $sub->peserta->user->name }} {{ $sub->file_path }} @php $colors = [ 'pending' => 'bg-yellow-100 text-yellow-800', 'approved' => 'bg-green-100 text-green-800', 'rejected' => 'bg-red-100 text-red-800', ]; @endphp {{ ucfirst($sub->status) }}
@csrf @method('DELETE')
@endsection