@extends('layouts.admin')
@section('title', 'Audit Log')
@section('content')
@empty
{{ $log->created_at->format('d M Y, h:i A') }}
{{ $log->user?->name ?? 'System' }}
{{ $log->action }}
{{ $log->description ?? '—' }}
{{ $log->ip_address ?? '—' }}
@endforelse
No audit entries yet.