@extends('layouts.app')
@section('title', 'Notifikasi')
@section('content')
Notifikasi Admin
Daftar peringatan dan notifikasi sistem.
| Waktu |
Judul |
Pesan |
Kategori |
@forelse($notifications as $notification)
|
{{ $notification->created_at?->format('d M Y H:i') }}
|
{{ $notification->data['title'] ?? 'Notifikasi' }}
|
{{ $notification->data['message'] ?? '-' }}
|
{{ $notification->data['category'] ?? '-' }}
|
@empty
| Belum ada notifikasi. |
@endforelse
@if (method_exists($notifications, 'hasPages') && $notifications->hasPages())
{{ $notifications->links() }}
@endif
@endsection