@extends('layouts.app') @section('title','Audit Trail') @section('content')
@forelse($logs as $log)@empty@endforelse
TimeUserModelEventChanges
{{ $log->created_at->format('d M Y H:i:s') }}{{ $log->user->name??'System' }}{{ class_basename($log->model_type) }} #{{ $log->model_id }}{{ ucfirst($log->event) }}{{ count($log->changes) }} field(s) changed
No audit records found
@if($logs->hasPages())@endif
@endsection