Audit trail

Log of boundary-related actions: who changed what, when, and why.

@if(empty($auditLogs) || $auditLogs->isEmpty())

No audit entries yet. Changes to boundaries will appear here.

@else
@foreach($auditLogs as $log) @endforeach
Boundary Action By When Details
@if($log->boundary) {{ $log->boundary->boundary_number }} @else — @endif {{ $log->action }} {{ $log->user_authority ?? '—' }} {{ $log->created_at ? $log->created_at->format('d M Y H:i') : '—' }} {{ Str::limit($log->reason ?? '—', 40) }}
@endif