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

Daftar Pemberitahuan

Kelola pembaruan penting untuk pegawai dan admin melalui panel notifikasi yang kaya visual ini.

@if($absensiNotifications->isEmpty())
Belum ada pemberitahuan absensi.
@else
@foreach($absensiNotifications as $notif)
@if($notif->image)
{{ $notif->title }}
@else
Tidak ada gambar
@endif
{{ $notif->title }}
{{ $notif->message }}
Untuk: {{ $notif->user->name }} ({{ $notif->user->username }}) Dikirim: {{ $notif->created_at->format('d/m/Y H:i') }}
@endforeach
@endif
@endsection