@extends('layouts.app') @section('title','Audit Event') @section('page_title','Audit Event') @section('content')

Event Details

User
{{ $audit->user?->name }} ({{ $audit->user?->email }})
Action
{{ $audit->action }}
Module
{{ $audit->module }}
Record
{{ $audit->record_type }} #{{ $audit->record_id }}
Reason
{{ $audit->reason ?: '—' }}
IP
{{ $audit->ip_address }}
User Agent
{{ $audit->user_agent }}

Previous Values

{{ json_encode($audit->old_values,JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES) }}

New Values

{{ json_encode($audit->new_values,JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES) }}
@endsection