Timestamp{{ $this->selectedEntry->created_at->format('M j, Y g:i:s A T') }}
Operator{{ $this->selectedEntry->user?->name ?? 'System / Unknown' }}
Authorization Level{{ $this->selectedEntry->authorization_level ? Str::headline($this->selectedEntry->authorization_level) : 'Not recorded (legacy event)' }}
Action{{ $this->selectedEntry->action }}
Status{{ Str::headline($this->selectedEntry->status->value) }}
Source{{ Str::headline($this->selectedEntry->source) }}
Entity{{ $this->selectedEntry->entity_type ? class_basename($this->selectedEntry->entity_type).' #'.$this->selectedEntry->entity_id : 'None' }}
IP Address{{ $this->selectedEntry->ip_address ?? 'Console' }}
Request ID{{ $this->selectedEntry->request_id ?? 'Not available' }}
Request Context
{{ $this->selectedEntry->description }}
@if ($this->selectedEntry->error_message)
Failure Detail
{{ $this->selectedEntry->error_message }}
@endif
User Agent
{{ $this->selectedEntry->user_agent ?? 'Console command or unavailable' }}
Before Values
{{ json_encode($this->selectedEntry->old_values ?? [], JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) }}
After Values
{{ json_encode($this->selectedEntry->new_values ?? [], JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) }}
Related Operation Timeline
@forelse ($this->relatedEvents as $related)
{{ $related['source'] }} ยท {{ $related['event_id'] ?? Str::headline($related['status']) }}
{{ $related['label'] }}
@empty
No other correlated events were recorded for this request.
@endforelse
Expandable Raw JSON
{{ json_encode($this->selectedEntry->toArray(), JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) }}