@extends('layouts.app') @section('title', 'Audit Log Detail - NGBVD') @section('content')
{{ optional($log->occurred_at)->format('Y-m-d H:i:s') }} · {{ $log->module }} · {{ $log->action }}
| User | {{ $log->username ?: 'System' }} {{ $log->user_email }} |
|---|---|
| Role | {{ $log->user_role }} |
| Module | {{ $log->module }} |
| Action | {{ $log->action }} |
| Status | {{ $log->status }} |
| Response | {{ $log->response_code }} |
| IP | {{ $log->ip_address }} |
| Method | {{ $log->method }} |
| URL | {{ $log->url }} |
{{ json_encode($log->request_payload, JSON_PRETTY_PRINT) }}
{{ json_encode($log->metadata, JSON_PRETTY_PRINT) }}