{{ __('Notifications') }}

View and manage all notifications

@if($notifications->where('is_read', false)->count() > 0)
@csrf
@endif @if($notifications->count() > 0)
@csrf @method('DELETE')
@endif

All Notifications

{{ $notifications->total() }} total notification{{ $notifications->total() !== 1 ? 's' : '' }} @if($notifications->where('is_read', false)->count() > 0) {{ $notifications->where('is_read', false)->count() }} unread @endif

@if(session('success'))
{{ session('success') }}
@endif
@forelse($notifications as $notification)
@if($notification->icon === 'success') @elseif($notification->icon === 'warning') @elseif($notification->icon === 'danger') @else @endif

{{ $notification->title }} @if(!$notification->is_read) @endif

{{ $notification->message }}

{{ $notification->created_at->timezone('Asia/Kolkata')->format('d M Y, h:i A') }} {{ $notification->time_ago }}

@if($notification->link)
@csrf
@elseif(!$notification->is_read)
@csrf
@endif
@csrf @method('DELETE')
@empty

No Notifications

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

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