Notifications

Manage your system notifications

@csrf
Unread Only
@if(session('success'))
{{ session('success') }}
@endif
@forelse($notifications as $notification)
@if($notification->type == 'success')
@elseif($notification->type == 'error')
@elseif($notification->type == 'warning')
@else
@endif

{{ $notification->title }}

@if(!$notification->is_read) New @endif

{{ $notification->message }}

{{ $notification->created_at->diffForHumans() }} @if($notification->link) View Details @endif
@if(!$notification->is_read)
@csrf
@endif
@csrf @method('DELETE')
@empty

No notifications found

@endforelse
@if($notifications->hasPages())
{{ $notifications->links() }}
@endif