@extends('layouts.admin') @section('title', 'Senarai Peserta') @section('content')

Senarai Peserta

+ Tambah Peserta Import Peserta
@csrf
@forelse($participants as $i => $p) @empty @endforelse
Bil. Nama No. KP No. Peserta Kategori Status Muat Turun Tindakan
{{ $participants->firstItem() + $i }} {{ $p->full_name }} {{ $p->formatted_ic_number }} {{ $p->participant_number ?? '-' }} {{ $p->category ?? '-' }} @if($p->certificate_status->value === 'downloaded') Telah dimuat turun @else Belum dimuat turun @endif {{ $p->download_count }}
Tiada rekod peserta.
@if($participants->hasPages() || $participants->total() > 0) @endif
@endsection