@extends('layouts.app') @section('title', 'Platform System Audit Logs') @section('content')

Platform System Audit Trail

Immutable security audit logs capturing every platform action, tenant switch, and configuration change.

@foreach($auditLogs as $log) @endforeach
Timestamp User Tenant Context Module Action IP Address
{{ $log->created_at->format('d M Y, h:i:s A') }} {{ $log->user ? $log->user->name : 'System' }} {{ $log->tenant ? $log->tenant->company_name : 'Platform' }} {{ $log->module }} {{ $log->action }} {{ $log->ip_address ?? '127.0.0.1' }}
{{ $auditLogs->links() }}
@endsection