{{ __('Admin Activity Logs') }}

{{-- The existing content is moved outside the header slot --}}
@foreach($logs as $log) {{-- Fixed width/format columns --}} {{-- Description column: Limited to 80 characters with ellipsis, full text shown on hover --}} @endforeach
Date Admin Action Description IP User Agent
{{ $log->created_at->format('d M Y H:i') }} {{ $log->admin->full_name ?? $log->admin->email }} {{ $log->action }} {{ \Illuminate\Support\Str::limit($log->description, 80) }} {{ $log->ip_address }} {{ $log->user_agent }}
{{ $logs->links() }}