@extends('layouts.admin') @section('title', 'Audit Log Report') @section('page-title', 'Audit Log Report') @section('page-subtitle', 'System activity history') @section('content')

Audit Log Report

Created New records
Updated Modified records
Deleted Removed records
@forelse($logs as $log) @empty @endforelse
Timestamp User Action Model Details
{{ $log->created_at->format('M d, Y H:i:s') }}
@if($log->user?->avatar) @else
{{ substr($log->user?->name ?? 'S', 0, 1) }}
@endif {{ $log->user?->name ?? 'System' }}
{{ ucfirst($log->action) }} {{ class_basename($log->model_type) }} @if($log->model_id) (#{{ $log->model_id }}) @endif @if($log->description) {{ $log->description }} @else - @endif
No audit logs found.
{{ $logs->withQueryString()->links() }}
@endsection