27 lines
611 B
PHP
27 lines
611 B
PHP
<?php
|
|
|
|
namespace App\Filament\Pages\Gescon;
|
|
|
|
use BackedEnum;
|
|
use Filament\Pages\Page;
|
|
use UnitEnum;
|
|
|
|
class Utilita extends Page
|
|
{
|
|
protected static ?string $navigationLabel = 'Utilità';
|
|
|
|
protected static ?string $title = 'Utilità';
|
|
|
|
protected static BackedEnum|string|null $navigationIcon = 'heroicon-o-wrench';
|
|
|
|
protected static UnitEnum|string|null $navigationGroup = 'GESCON';
|
|
|
|
protected static ?int $navigationSort = 60;
|
|
|
|
protected static ?string $slug = 'gescon/utilita';
|
|
|
|
protected string $view = 'filament.pages.gescon.section';
|
|
|
|
public string $sectionKey = 'utilita';
|
|
}
|