@extends('layouts.app') @section('title', 'Audit log') @section('content')
{{ $logs->total() }} event(s) recorded.
| When | User | Module | Action | Subject | IP |
|---|---|---|---|---|---|
| {{ $log->created_at?->format('d M Y H:i:s') ?? '—' }} | {{ $log->user?->name ?? 'System' }} | {{ $log->module }} | {{ $log->action }} | {{ $log->subject_type ? class_basename($log->subject_type).' #'.$log->subject_id : '—' }}
@if ($log->description)
{{ \Illuminate\Support\Str::limit($log->description, 70) }}
@endif |
{{ $log->ip_address ?: '—' }} |
| @include('components.empty-state', ['icon' => '📜', 'title' => 'No audit events recorded']) | |||||