58 lines
2.5 KiB
PHP
58 lines
2.5 KiB
PHP
@extends('layouts.admin')
|
|
|
|
@section('title', 'Log Audit Detail')
|
|
|
|
@section('breadcrumb')
|
|
<li class="breadcrumb-item"><a href="{{ route('admin.audit-logs.index') }}">Log Audit</a></li>
|
|
<li class="breadcrumb-item active">#{{ $auditLog->id }}</li>
|
|
@endsection
|
|
|
|
@section('content')
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-8">
|
|
<div class="card border-0 shadow-sm">
|
|
<div class="card-header bg-white border-bottom">
|
|
<h6 class="mb-0 fw-semibold">Log Audit #{{ $auditLog->id }}</h6>
|
|
</div>
|
|
<div class="card-body">
|
|
<dl class="row">
|
|
<dt class="col-3 text-muted">Event</dt>
|
|
<dd class="col-9"><code>{{ $auditLog->event }}</code></dd>
|
|
|
|
<dt class="col-3 text-muted">Deskripsi</dt>
|
|
<dd class="col-9">{{ $auditLog->description ?? '—' }}</dd>
|
|
|
|
<dt class="col-3 text-muted">Pengguna</dt>
|
|
<dd class="col-9">{{ $auditLog->user?->name ?? 'Sistem' }}</dd>
|
|
|
|
<dt class="col-3 text-muted">IP</dt>
|
|
<dd class="col-9">{{ $auditLog->ip_address ?? '—' }}</dd>
|
|
|
|
<dt class="col-3 text-muted">Tarikh</dt>
|
|
<dd class="col-9">{{ $auditLog->created_at->format('d/m/Y H:i:s') }}</dd>
|
|
|
|
@if($auditLog->auditable_type)
|
|
<dt class="col-3 text-muted">Model</dt>
|
|
<dd class="col-9"><code>{{ class_basename($auditLog->auditable_type) }} #{{ $auditLog->auditable_id }}</code></dd>
|
|
@endif
|
|
</dl>
|
|
|
|
@if($auditLog->old_values)
|
|
<div class="mt-3">
|
|
<label class="text-muted small fw-semibold text-uppercase" style="font-size:.7rem">Nilai Lama</label>
|
|
<pre class="bg-light rounded p-2 mt-1 small">{{ json_encode($auditLog->old_values, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) }}</pre>
|
|
</div>
|
|
@endif
|
|
|
|
@if($auditLog->new_values)
|
|
<div class="mt-3">
|
|
<label class="text-muted small fw-semibold text-uppercase" style="font-size:.7rem">Nilai Baru</label>
|
|
<pre class="bg-light rounded p-2 mt-1 small">{{ json_encode($auditLog->new_values, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) }}</pre>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|