TenantAtlas/resources/views/filament/pages/monitoring/audit-log.blade.php
2026-03-24 12:23:07 +01:00

32 lines
1.2 KiB
PHP

<x-filament-panels::page>
@php($selectedAudit = $this->selectedAuditRecord())
@php($selectedAuditLink = $this->selectedAuditTargetLink())
<x-filament::section>
<div class="flex flex-col gap-3">
<div class="text-lg font-semibold text-gray-900 dark:text-gray-100">
Summary-first audit history
</div>
<div class="text-sm text-gray-600 dark:text-gray-300">
Review governance, operational, and workspace-admin events in reverse chronological order without leaving the canonical Monitoring route.
</div>
<div class="text-sm text-gray-600 dark:text-gray-300">
Actor, outcome, target, and readable context stay visible even when the original record changes or disappears later.
</div>
</div>
</x-filament::section>
@if ($selectedAudit)
<x-filament::section>
@include('filament.pages.monitoring.partials.audit-log-inspect-event', [
'selectedAudit' => $selectedAudit,
'selectedAuditLink' => $selectedAuditLink,
])
</x-filament::section>
@endif
{{ $this->table }}
</x-filament-panels::page>