@extends('layouts.app') @section('title', 'Audit Logs') @section('breadcrumbs') @endsection @section('content')

Audit Logs

Track all system activities and changes

@forelse($logs ?? [] as $log) @empty @endforelse
TimestampUserModuleActionDescriptionIP
{{ $log->created_at?->format('d M Y H:i:s') ?? '' }} {{ $log->user->name ?? 'System' }} {{ ucfirst($log->module ?? '') }} {{ ucfirst($log->action ?? '') }} {{ Str::limit($log->description ?? '', 60) }} {{ $log->ip_address ?? '' }}
No audit logs found
@endsection @push('scripts') @endpush