23 lines
478 B
PHP
23 lines
478 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\Pages;
|
|
|
|
use Filament\Pages\Page;
|
|
|
|
class NoAccess extends Page
|
|
{
|
|
protected static string $layout = 'filament-panels::components.layout.simple';
|
|
|
|
protected static bool $shouldRegisterNavigation = false;
|
|
|
|
protected static bool $isDiscovered = false;
|
|
|
|
protected static ?string $slug = 'no-access';
|
|
|
|
protected static ?string $title = 'No access';
|
|
|
|
protected string $view = 'filament.pages.no-access';
|
|
}
|