No changes recorded yet. When settings are modified, the full audit trail appears here.
| When | Type | Setting Key | Changed By | Old Value | New Value | Context |
|---|---|---|---|---|---|---|
|
{{ $entry->changed_at?->format('d M Y H:i') ?? '—' }}
{{ $entry->changed_at?->diffForHumans() }}
@if($entry->changed_by_ip)
{{ $entry->changed_by_ip }}
@endif
|
{{ ucfirst($type) }} |
{{ $entry->setting?->key ?? '—' }}
|
@if($entry->user)
{{ strtoupper(substr($entry->user->name, 0, 1)) }}
{{ $entry->user->name }}
{{ $entry->user->email }}
|
@if(is_null($entry->old_value))
null
@else
{{ is_array($entry->old_value) ? json_encode($entry->old_value, JSON_PRETTY_PRINT) : $entry->old_value }}
@endif
|
@if(is_null($entry->new_value))
null
@else
{{ is_array($entry->new_value) ? json_encode($entry->new_value, JSON_PRETTY_PRINT) : $entry->new_value }}
@endif
|
@if(!empty($ctx))
@if(!empty($ctx['route']))
@else
—
@endif
Route: {{ $ctx['route'] }} @endif
@if(!empty($ctx['method']))Method: {{ $ctx['method'] }} @endif
@if(!empty($ctx['url']))URL: {{ $ctx['url'] }} @endif
@if($entry->changed_by_user_agent)
{{ Str::limit($entry->changed_by_user_agent, 80) }}
@endif
|