Records

@if ( $auditLogs['count'] == 0 )

No audit records found

@else @if ( $auditLogs['total_records'] >= $auditLogs['limit'] )

Recent {{ $auditLogs['limit'] }} records of {{ $auditLogs['total_records'] }} records

@else

Recent {{ $auditLogs['limit'] }} records

@endif
@foreach ($auditLogs['data'] as $i => $item) @endforeach
# Date/Time Username Event Status Action Level IP Address Module Route Action
{{ $i + 1 }} {{ hfDateTimeFormat($item['audit_dt']) }} @if ( empty($item['username']) ) Not Available @else {{ $item['username'] }} @endif @if ( $item['event_status'] == 'Success' ) Success @endif @if ( $item['event_status'] == 'Failure' ) Failure @endif {{ $item['action_level'] }} {{ $item['ip_address'] }} {{ $item['sys_module'] }} @php $route = json_decode($item['route']); @endphp @if ( $route->method == 'POST' ) {{ $route->method }} @else {{ $route->method }} @endif {{ $route->uri }} {{ $item['action'] }} @if ( ! empty($item['data']) ) @endif
@endif