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

27 lines
637 B
PHP

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