netgescon-day0/app/Filament/Pages/Gescon/Anagrafica.php

27 lines
632 B
PHP

<?php
namespace App\Filament\Pages\Gescon;
use BackedEnum;
use Filament\Pages\Page;
use UnitEnum;
class Anagrafica extends Page
{
protected static ?string $navigationLabel = 'Anagrafica';
protected static ?string $title = 'Anagrafica';
protected static BackedEnum|string|null $navigationIcon = 'heroicon-o-identification';
protected static UnitEnum|string|null $navigationGroup = 'GESCON';
protected static ?int $navigationSort = 10;
protected static ?string $slug = 'gescon/anagrafica';
protected string $view = 'filament.pages.gescon.section';
public string $sectionKey = 'anagrafica';
}