{{-- Page header --}}

Overview

System status and recent activity

{{-- Financial stat cards --}}
{{-- User stat cards --}}
{{-- Recent audit log --}}

Recent Activity

Latest system events

View All
@forelse($recentAuditLogs as $log)
{{-- Action icon --}}
@if(str_contains($log->action, 'created')) @elseif(str_contains($log->action, 'login')) @elseif(str_contains($log->action, 'password')) @else @endif
{{-- Content --}}
{{ ucfirst(str_replace(['user.', 'admin.', '_'], ['', '', ' '], $log->action)) }} @if($log->target_label) {{ $log->target_label }} @endif

{{ $log->actor_email ?? 'System' }}

{{-- Timestamp --}}
{{ $log->created_at->diffForHumans() }}
@empty

No recent activity

Actions will appear here as they happen

@endforelse