Overview

Super Admin Dashboard

@php $activityIconMap = [ 'user_created' => "", 'user_blocked' => "", 'user_unblocked' => "", 'photo_captured' => "", 'email_sent' => "", 'user_deleted' => "", ]; @endphp

Quick Actions

Manage users quickly and monitor platform activity.

Add User View Reports Coming Soon

Sessions in Last 30 Days

Trend

Latest Activity

@if($latestActivityLogs->isEmpty()) @else
@foreach($latestActivityLogs as $log) @php $iconPath = $activityIconMap[$log->action] ?? ""; $actionLabel = str_replace('_', ' ', $log->action); $description = $log->details['message'] ?? ucfirst($actionLabel); @endphp
{!! $iconPath !!}

{{ $description }}

{{ $log->user?->name ?? 'System' }} {{ $log->created_at->diffForHumans() }}
@endforeach
@endif
@push('scripts') @endpush