{{ __('All Notifications Log') }}

{{ __('Monitor and manage all system and ticket activity alerts.') }}

@forelse ($notifications as $notification)
{{ $notification->title }}
{{ $notification->title }}
{{ __($notification->type ?? 'System') }} @if($notification->read_at == null) {{ __('New') }} @endif

{{ $notification->message }}

{{ $notification->created_at->diffForHumans() }} @if($notification->read_at != null) {{ __('Read by') }} {{ $notification->read_by }} ({{ Carbon\Carbon::parse($notification->read_at)->diffForHumans() }}) @endif
@if($notification->read_at == null) @endif
@empty
No Data

{{ __('No notifications found matching your search or filters.') }}

@endforelse
{{ $notifications->links() }}