@extends('layouts.adminlte') @section('title', 'Hasil Laporan Absensi') @section('content_header')
Periode: {{ $startDate->format('d/m/Y') }} s/d {{ $endDate->format('d/m/Y') }}
Tidak ada data absensi yang sesuai dengan filter periode dan kelas yang Anda pilih.
| # | Siswa | Kelas | Waktu | Status | Detail |
|---|---|---|---|---|---|
| {{ $loop->iteration }} |
{{ $absence->student->name ?? 'Siswa Dihapus' }}
NIS: {{ $absence->student->nis ?? '-' }}
|
{{ $absence->student->class->name ?? 'N/A' }} |
{{ $absence->attendance_time->format('d/m/Y') }}
{{ $absence->attendance_time->format('H:i') }} WIB
|
@php $statusStyles = [ 'Hadir' => 'bg-green-100 text-green-700', 'Terlambat' => 'bg-amber-100 text-amber-700', 'Absen' => 'bg-red-100 text-red-700', 'Izin' => 'bg-blue-100 text-blue-700', 'Sakit' => 'bg-purple-100 text-purple-700', ]; $style = $statusStyles[$absence->status] ?? 'bg-gray-100 text-gray-600'; @endphp {{ $absence->status }} | @if ($absence->status == 'Terlambat') {{ $absence->late_duration }} menit @else - @endif |