Notifications — ProcureFlow My Alerts & Notifications

Notifications

Stay updated on approval requests and procurement milestones.

@if(auth()->user()->unreadNotifications->count() > 0)
@csrf
@endif
@forelse($notifications as $n)
{{ $n->data['reference'] ?? 'System Alert' }}
{{ $n->created_at->diffForHumans() }}
{{ $n->data['message'] ?? 'You have a new notification.' }}
View Procurement @if(!$n->read_at)
@csrf
@endif
@empty
No notifications yet.
@endforelse
{{ $notifications->links() }}