{{ $totalUsers ?? 0 }}
Total Users
In System
{{ $totalDocuments ?? 0 }}
Total Documents
Submitted
{{ $totalApprovals ?? 0 }}
Total Approvals
Processed

Role Assignment Required

You don't have a specific role assigned yet. Contact an administrator to assign you one of the following roles:

  • Contractor: Upload and manage your own documents
  • Consultant: Review contractor-submitted documents
  • Client A: Review consultant-approved documents
  • Client B/C: Final review stage with rejection rights

Recent Notifications

@if(isset($recentNotifications) && $recentNotifications->where('read_status', false)->count() > 0) {{ $recentNotifications->where('read_status', false)->count() }} unread @endif
@if(isset($recentNotifications) && $recentNotifications->count() > 0)
@foreach($recentNotifications as $notification)
@if(!$notification->read_status)
@else
@endif

{{ $notification->message }}

{{ $notification->created_at->diffForHumans() }}
@if($notification->document) @endif
@endforeach
@else

No notifications

You'll see notifications here once you have a role assigned.

@endif