Nilai Terbaru
5 terkini
@forelse($nilaiTerbaru as $n)
@php
$v = $n->nilai;
$cls = $v >= 85 ? 'a' : ($v >= 70 ? 'b' : ($v >= 55 ? 'c' : 'd'));
$colors = ['a'=>'#059669','b'=>'#2563eb','c'=>'#d97706','d'=>'#dc2626'];
@endphp
@endforelse
{{ $n->mapel->nama_mapel ?? '—' }}
{{ $v }}
@empty
Belum ada data nilai
Riwayat Absensi
5 terkini
@forelse($absensiTerakhir as $a)
@php
$tgl = \Carbon\Carbon::parse($a->created_at);
$statusClass = in_array($a->status, ['hadir','izin','sakit','alpha']) ? $a->status : 'hadir';
$statusLabel = ucfirst($a->status);
@endphp
{{ $statusLabel }}
@empty
@endforelse
{{ $tgl->format('d') }}
{{ $tgl->format('M') }}
Absensi Kelas
{{ $tgl->format('H:i') }} WIB
Belum ada data absensi