@extends('layouts.app') @section('heading','Audit Log') @section('content')

Security and operational history for account, event, VIP activation and media changes.

@if($search!=='')Clear@endif
@forelse($logs as $log) @empty @endforelse
Date/TimeUserActionDescriptionIP
{{ optional($log->created_at)->format('d M Y, h:i:s A') }} {{ $log->user?->name ?? 'System/Guest' }}@if($log->user?->trashed()) Archived@endif {{ $log->action }} {{ $log->description ?: '—' }} {{ $log->ip_address ?: '—' }}
No audit records found.
{{ $logs->links() }}
@endsection