23 lines
603 B
PHP
23 lines
603 B
PHP
<?php
|
|
namespace App\Filament\Pages\Supporto;
|
|
|
|
use BackedEnum;
|
|
use UnitEnum;
|
|
|
|
class TicketAcquaLight extends TicketAcqua
|
|
{
|
|
protected static ?string $navigationLabel = 'Ticket Acqua Light';
|
|
|
|
protected static ?string $title = 'Ticket Acqua Light';
|
|
|
|
protected static BackedEnum|string|null $navigationIcon = 'heroicon-o-bolt';
|
|
|
|
protected static UnitEnum|string|null $navigationGroup = 'Mobile';
|
|
|
|
protected static ?int $navigationSort = 27;
|
|
|
|
protected static ?string $slug = 'supporto/ticket-acqua-light';
|
|
|
|
protected string $view = 'filament.pages.supporto.ticket-acqua-light';
|
|
}
|