{{-- Print button (hidden in print media) --}}
{{-- ── REPORT HEADER ── --}}

Audit Logs Report

Ministry of Fisheries and Ocean Resources — Republic of Kiribati

Generated on
{{ date('d M Y \a\t H:i') }}
{{-- ── ACTIVE FILTERS ── --}} @if(request('search') || request('action') || request('date'))
Filters Applied
@if(request('search')) Search: {{ request('search') }} @endif @if(request('action')) Action: {{ ucwords(str_replace('_', ' ', request('action'))) }} @endif @if(request('date')) Date: {{ \Carbon\Carbon::parse(request('date'))->format('d M Y') }} @endif
@endif {{-- ── SUMMARY BAR ── --}}
{{ $auditLogs->count() }}
Total Records
@if($auditLogs->count() > 0) Showing logs from {{ $auditLogs->last()->created_at->format('d M Y') }} to {{ $auditLogs->first()->created_at->format('d M Y') }} @endif
{{-- ── TABLE ── --}} @if($auditLogs->count() > 0)
@foreach($auditLogs as $i => $log) @endforeach
# Action Details User Date & Time IP Address
{{ $i + 1 }} {{ $log->action }} {{ $log->details }} {{ $log->user?->name ?? 'System' }} {{ $log->created_at->format('d M Y H:i') }} {{ $log->ip_address ?? 'N/A' }}
@else

No audit logs found matching the specified criteria.

@endif {{-- ── REPORT FOOTER ── --}}
{{-- /.page-wrap --}}