Files
myAnsuran-KIK-JPPH-/src/resources/views/admin/audit-trail.blade.php
2026-06-16 15:04:58 +08:00

38 lines
1.3 KiB
PHP

@extends('layouts.app')
@section('title', 'Audit Trail')
@section('page-title', 'Audit Trail')
@section('page-label', 'Admin')
@section('content')
<div class="card surface-card p-4">
<div class="table-responsive">
<table class="table align-middle">
<thead>
<tr>
<th>Tarikh</th>
<th>Pengguna</th>
<th>Modul</th>
<th>Tindakan</th>
<th>Keterangan</th>
<th>IP</th>
</tr>
</thead>
<tbody>
@foreach ($audits as $audit)
<tr>
<td>{{ $audit->created_at->format('d/m/Y h:i A') }}</td>
<td>{{ $audit->user?->displayName() ?: 'Sistem' }}</td>
<td>{{ $audit->module }}</td>
<td>{{ $audit->action }}</td>
<td>{{ $audit->description }}</td>
<td>{{ $audit->ip_address ?: '-' }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
<div class="mt-3">{{ $audits->links() }}</div>
</div>
@endsection