Notifications

Stay updated with system notifications

{{-- Stats Cards --}}

Total Notifications

{{ $stats['total'] }}

Unread

{{ $stats['unread'] }}

Today

{{ $stats['today'] }}

{{-- Notifications List --}}

Recent Notifications

@forelse($notifications as $notification)
@if($notification->type === 'info')
@elseif($notification->type === 'warning')
@elseif($notification->type === 'success')
@else
@endif

{{ $notification->title }}

@if(!$notification->read_by_current_user) @endif

{{ $notification->message }}

@if($notification->action_url) @endif @if(!$notification->read_by_current_user)
@endif
@empty

No notifications

You're all caught up! Check back later for new notifications.

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