@if(session('success'))
{{ session('success') }}
@endif

Notifications

Latest activities requiring your attention.

@csrf
@csrf @method('DELETE')
@forelse($notifications as $notification)
@if($notification->type == 'success')
@elseif($notification->type == 'warning')
⚠️
@elseif($notification->type == 'error')
@else
🔔
@endif

{{ $notification->title }}

{{ $notification->message }}

{{ $notification->created_at->diffForHumans() }}
@if(!$notification->is_read)
@csrf @method('PUT')
@else Read @endif
@csrf @method('DELETE')
@empty
🔔

No Notifications

Everything is up to date.

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