{{ $totalUsers }}

Total Users

System-wide users

{{ $totalCompanies }}

Company Users

Active companies

{{ $totalWorkspaces }}

Total Workspaces

All workspaces

{{ $totalWorkspaceItems }}

Total Workspace Items

All workspace items

{{ $unresolvedTickets ?? 0 }}

Unresolved Tickets

Require attention

View

{{ $resolvedTickets ?? 0 }}

Resolved Tickets

Successfully closed

View
Add Company

Create new company user accounts

Add Company
Manage Companies

View and edit existing companies

View All
Profile Settings

Update your admin profile

Edit Profile

System Overview

{{ $verifiedUsers }}

Verified Users

{{ $unverifiedUsers }}

Pending Verification

{{ $companiesWithWorkspaces }}

Active Companies

{{ $companiesWithoutWorkspaces }}

Inactive Companies

{{ $activeWorkspaces }}

Active Workspaces

{{ $inactiveWorkspaces }}

Empty Workspaces

Recent Users

@if($recentUsers->count() > 0)
@foreach($recentUsers as $recentUser) @endforeach
User Role Status Joined
{{ strtoupper(substr($recentUser->name, 0, 1)) }}
{{ $recentUser->name }}
{{ $recentUser->email }}
@foreach($recentUser->roles as $role) {{ $role->title }} @endforeach @if($recentUser->email_verified_at) Verified @else Pending @endif {{ $recentUser->created_at->diffForHumans() }}
@else

No recent users

@endif

Recent Workspaces

@if($recentWorkspaces->count() > 0)
@foreach($recentWorkspaces as $workspace) @endforeach
Workspace Owner Created
{{ $workspace->name }} @if($workspace->description)
{{ Str::limit($workspace->description, 30) }} @endif
{{ $workspace->user->name }}
{{ $workspace->user->company ?? 'No company' }}
{{ $workspace->created_at->diffForHumans() }}
@else

No recent workspaces

@endif