@extends('layouts.app') @push('head') @endpush @section('content')
Informasi Terbaru

Pemberitahuan

Pantau update absensi dan catatan admin melalui panel notifikasi yang lebih dinamis dan mudah dipindai.

{{ now()->timezone(config('app.timezone'))->format('d M Y H:i') }} Jumlah notifikasi: {{ $absensiNotifications->count() + $adminNotifications->count() }}
@if($absensiNotifications->isEmpty())
Tidak ada pemberitahuan dari absensi.
@else
@foreach($absensiNotifications as $notif)
@if($notif->image)
{{ $notif->title }}
@else
Tidak ada gambar
@endif
{{ $notif->title }} @unless($notif->is_read) Baru @endunless
{{ $notif->message }}
{{ $notif->created_at->format('d/m/Y H:i') }}
@endforeach
@endif
@endsection