@extends('admin.layout.template') @section('title', 'Notifications') @section('content')
All Notifications
@if($notifications->count())
@csrf @method('DELETE')
@endif
@forelse($notifications as $notification) @php $data = $notification->data; $isUnread = is_null($notification->read_at); @endphp
{{ $data['title'] ?? 'System Notification' }}

{{ $data['message'] ?? '' }}

{{ $notification->created_at->diffForHumans() }}
@if($isUnread) @endif
@csrf @method('DELETE')
@empty
No notifications available
@endforelse
@endsection