SuperAdmin Access: You have full system access and can manage all users, documents, and system settings.
{{ $totalUsers ?? 0 }}
Total Users
System Wide
{{ $totalDocuments ?? 0 }}
Total Documents
All Submissions
{{ $totalApprovals ?? 0 }}
Total Approvals
All Reviews
{{ $totalNotifications ?? 0 }}
Notifications
System Wide

Create User

Add new users to the system

@if(isset($usersWithoutRoles) && $usersWithoutRoles > 0) {{ $usersWithoutRoles }} @endif

Manage Users

Assign roles and manage users

All Documents

View and manage all documents

System Analytics

View approval analytics

Users by Role

Document Types

Approval Workflow Funnel

Document Status Distribution

@if(isset($monthlyDocuments) && $monthlyDocuments->count() > 0)

Monthly Document Submission Trends

@endif

Recent Documents

@if(isset($recentDocuments) && $recentDocuments->count() > 0)
@foreach($recentDocuments as $document)

{{ $document->title }}

{{ $document->type }} • {{ $document->contractor->name }}

{{ $document->created_at->diffForHumans() }}

{{ $document->current_status }}
@endforeach
@else

No documents in the system yet.

@endif

Average Approval Times

@if(isset($averageApprovalTimes) && $averageApprovalTimes->count() > 0)
@foreach($averageApprovalTimes as $timeData)
{{ $timeData->role }}
{{ number_format($timeData->avg_days, 1) }}
days avg
@endforeach
@else

No approval time data available yet.

@endif
@if(isset($usersWithoutRoles) && $usersWithoutRoles > 0)

System Alert

{{ $usersWithoutRoles }} user(s) don't have roles assigned. Assign roles now →

@endif