@php $statusLabels = [ 'hadir' => 'Hadir', 'izin' => 'Izin', 'sakit' => 'Sakit', 'alpha' => 'Alpha', ]; @endphp

Presensi {{ $attendance->attendance_date->format('d M Y') }}

Cabang

{{ $attendance->branch?->name ?: $attendance->group?->branch?->name ?: '-' }}

Kelompok

{{ $attendance->group?->name ?: '-' }}

Guru

{{ $attendance->teacher?->name ?: '-' }}

Pertemuan

Ke-{{ $attendance->meeting_number }}

@foreach ($statusLabels as $status => $label)

{{ $label }}

{{ $summary[$status] ?? 0 }}

@endforeach
@forelse ($attendance->details as $detail) @empty @endforelse
No. Nama Santri Status
{{ $loop->iteration }} {{ $detail->student?->name }} {{ $statusLabels[$detail->status] ?? ucfirst($detail->status) }}
Tidak ada detail presensi.