26 lines
953 B
PHP
26 lines
953 B
PHP
<x-filament-panels::page>
|
|
@php($selectedException = $this->selectedFindingException())
|
|
|
|
<x-filament::section>
|
|
<div class="flex flex-col gap-3">
|
|
<div class="text-lg font-semibold text-gray-900 dark:text-gray-100">
|
|
Canonical risk-acceptance approvals
|
|
</div>
|
|
|
|
<div class="text-sm text-gray-600 dark:text-gray-300">
|
|
Review pending requests, expiring governance, and lapsed exception coverage across entitled tenants without leaving the Monitoring area.
|
|
</div>
|
|
</div>
|
|
</x-filament::section>
|
|
|
|
@if ($this->showSelectedExceptionSummary && $selectedException)
|
|
<x-filament::section>
|
|
@include('filament.pages.monitoring.partials.finding-exception-queue-sidebar', [
|
|
'selectedException' => $selectedException,
|
|
])
|
|
</x-filament::section>
|
|
@endif
|
|
|
|
{{ $this->table }}
|
|
</x-filament-panels::page>
|