@extends('layouts.admin') @section('title', 'Peserta — ' . $program->title) @section('header', 'Senarai Peserta') @section('breadcrumb')
| # | Nama | Agensi | Sesi | Sumber | Status | Tindakan |
|---|---|---|---|---|---|---|
| {{ $programParticipants->firstItem() + $i }} |
{{ $p->name }}
{{ $p->email ?: '—' }}
|
{{ $p->agency ?: '—' }} | @if($pp->pre_registered_session) {{ Str::ucfirst($pp->pre_registered_session) }} @else — @endif | @php $sourceMap = [ 'pre_registered' => ['secondary', 'Pra-Daftar'], 'import' => ['info', 'Import'], 'walk_in' => ['warning', 'Walk-In'], 'admin_manual' => ['dark', 'Manual'], ]; [$sc, $sl] = $sourceMap[$pp->registration_source] ?? ['light', $pp->registration_source]; @endphp {{ $sl }} | @if($pp->status === 'checked_in') Hadir @elseif($pp->status === 'cancelled') Dibatalkan @else Berdaftar @endif | @if($pp->status !== 'checked_in') @endif |