24 lines
609 B
PHP
Executable File
24 lines
609 B
PHP
Executable File
<?php
|
|
namespace App\Filament\Pages\Supporto;
|
|
|
|
use BackedEnum;
|
|
use Filament\Pages\Page;
|
|
use UnitEnum;
|
|
|
|
class SupportoDashboard extends Page
|
|
{
|
|
protected static ?string $navigationLabel = 'Dashboard Supporto';
|
|
|
|
protected static ?string $title = 'Dashboard Supporto';
|
|
|
|
protected static BackedEnum|string|null $navigationIcon = 'heroicon-o-lifebuoy';
|
|
|
|
protected static UnitEnum|string|null $navigationGroup = 'Supporto';
|
|
|
|
protected static ?int $navigationSort = 1;
|
|
|
|
protected static ?string $slug = 'supporto/dashboard';
|
|
|
|
protected string $view = 'filament.pages.supporto.dashboard';
|
|
}
|