@foreach($latestActivityLogs as $log)
@php
$iconPath = $activityIconMap[$log->action] ?? "
";
$actionLabel = str_replace('_', ' ', $log->action);
$description = $log->details['message'] ?? ucfirst($actionLabel);
@endphp
{{ $log->user?->name ?? 'System' }}
•
{{ $log->created_at->diffForHumans() }}
@endforeach
@endif