netgescon-day0/app/Filament/Pages/Supporto/AggiornamentoLauncher.php

22 lines
626 B
PHP

<?php
namespace App\Filament\Pages\Supporto;
use BackedEnum;
use UnitEnum;
class AggiornamentoLauncher extends Modifiche
{
protected static ?string $navigationLabel = 'Aggiornamento Nodo';
protected static ?string $title = 'Launcher Aggiornamento Nodo';
protected static BackedEnum|string|null $navigationIcon = 'heroicon-o-arrow-path';
protected static UnitEnum|string|null $navigationGroup = 'Supporto';
protected static ?int $navigationSort = 29;
protected static ?string $slug = 'supporto/aggiornamento-nodo';
protected string $view = 'filament.pages.supporto.aggiornamento-launcher';
}