@extends('layouts.admin') @section('content')

Total Users

{{ $totalUsers ?? 0 }}

{{ $activeUsersCount ?? 0 }} active

Total Clients

{{ $totalClients ?? 0 }}

{{ $activeClientsCount ?? 0 }} active

Total Events

{{ $totalEvents ?? 0 }}

{{ $activeEventsCount ?? 0 }} active

Avg. Completion Rate

{{ number_format($avgCompletionRate ?? 0, 1) }}%

Across all tiers

User-Event Associations

Total User-Event Links

{{ $totalUserEventAssociations ?? 0 }}

Active associations

Users with Events

{{ ($totalUsers ?? 0) - ($usersWithoutEvents ?? 0) }}

Out of {{ $totalUsers ?? 0 }} total

Events with Users

{{ $eventsWithUsers ?? 0 }}

Out of {{ $totalEvents ?? 0 }} total

Unassigned Users

{{ $usersWithoutEvents ?? 0 }}

Need assignment

Quick Actions

Manage User-Event Associations

Associate users with specific events and manage relationships

Go to Events

Generate Registration Links

Create event-specific registration URLs for new users

Manage Links

Role & Permission Management

Manage user roles, permissions, and access control

Manage Roles

Bulk Import Users

Import users from CSV files with validation and progress tracking

Manage Imports

Export Data

Export user data, progress reports, and analytics for CRM integration

Manage Exports

View Unassigned Users

Find users who need to be assigned to events

View Unassigned
@if(isset($recentActivity) && count($recentActivity) > 0)

Recent Activity

@foreach($recentActivity as $activity)

{{ $activity['description'] }}

{{ $activity['time'] }}
@endforeach
@endif
@endsection