@extends('pages.index') @section('admin_content')

Absensi Mapel @if(isset($kelas)) - {{ $kelas->name }} @endif

@php $totalHadir = isset($absensi) ? $absensi->where('status','tepat_waktu')->count() : 0; $totalTerlambat = isset($absensi) ? $absensi->where('status','terlambat')->count() : 0; $totalLainnya = isset($absensi) ? $absensi->whereNotIn('status',['tepat_waktu','terlambat'])->count() : 0; $totalSemua = isset($absensi) ? $absensi->count() : 0; @endphp
Total
{{ $totalSemua }}
Hadir
{{ $totalHadir }}
Absensi Mapel @if(isset($kelas)) {{ $kelas->name }} @endif
Pelajaran -
Bulan/Tahun {{ now()->timezone('Asia/Jakarta')->format('F Y') }}
Kelas {{ $kelas->name ?? '-' }}
Pelajaran
Tanggal
Bulan
Tahun
@php $rownum = 1; @endphp @if(isset($absensi) && count($absensi)) @foreach($absensi as $idx => $item) @php $rownum++; @endphp @endforeach @endif @if(isset($belumAbsen) && count($belumAbsen)) @foreach($belumAbsen as $idx => $siswa) @php $rownum++; @endphp @endforeach @endif
No Nama Siswa NISN Tanggal Absensi Jam Pertemuan Coordinate Keterangan
@endsection