@extends('layout') @section('title', 'Audit History') @section('content')
Immutable-enough event history

Audit history

Who changed what, when, and from which organization context.

@forelse($logs as $log)@empty@endforelse
TimeActorEventSubjectChangeIP
{{ $log->created_at->format('d M Y H:i:s') }}{{ $log->user?->name ?? 'System' }}{{ $log->event }}{{ class_basename($log->auditable_type) }} #{{ $log->auditable_id }}
Inspect
{{ json_encode(['before'=>$log->old_values,'after'=>$log->new_values], JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES) }}
{{ $log->ip_address ?: '—' }}
No audit events recorded.
{{ $logs->links('components.pagination') }}
@endsection