@extends('layouts.app') @section('title', 'Log Details') @section('content')
Record ID: #{{ $crudLog->model_id }}
User: {{ $crudLog->user?->name ?? 'System' }} ({{ $crudLog->user?->email }})
Timestamp: {{ $crudLog->created_at->format('M d, Y H:i:s') }}
IP Address: {{ $crudLog->ip_address ?? 'N/A' }}
User Agent:
{{ $crudLog->user_agent ?? 'N/A' }}
| Field | Value |
|---|---|
| {{ $key }} | {{ $value }} |
| Field | Value |
|---|---|
| {{ $key }} | {{ $value }} |
| Field | Old Value | New Value |
|---|---|---|
| {{ $key }} |
{{ $oldVal ?? '-' }}
|
{{ $newVal }}
|
| No changes detected | ||