42 lines
1.0 KiB
PHP
42 lines
1.0 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\Pages\Monitoring;
|
|
|
|
use App\Support\OperateHub\OperateHubShell;
|
|
use BackedEnum;
|
|
use Filament\Actions\Action;
|
|
use Filament\Pages\Page;
|
|
use UnitEnum;
|
|
|
|
class AuditLog extends Page
|
|
{
|
|
protected static bool $isDiscovered = false;
|
|
|
|
protected static bool $shouldRegisterNavigation = false;
|
|
|
|
protected static string|UnitEnum|null $navigationGroup = 'Monitoring';
|
|
|
|
protected static ?string $navigationLabel = 'Audit Log';
|
|
|
|
protected static string|BackedEnum|null $navigationIcon = 'heroicon-o-clipboard-document-list';
|
|
|
|
protected static ?string $slug = 'audit-log';
|
|
|
|
protected static ?string $title = 'Audit Log';
|
|
|
|
protected string $view = 'filament.pages.monitoring.audit-log';
|
|
|
|
/**
|
|
* @return array<Action>
|
|
*/
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return app(OperateHubShell::class)->headerActions(
|
|
scopeActionName: 'operate_hub_scope_audit_log',
|
|
returnActionName: 'operate_hub_return_audit_log',
|
|
);
|
|
}
|
|
}
|