25 lines
656 B
PHP
25 lines
656 B
PHP
<?php
|
|
|
|
namespace App\Filament\Pages\Strumenti;
|
|
|
|
use BackedEnum;
|
|
use Filament\Pages\Page;
|
|
use UnitEnum;
|
|
|
|
class PassaggiDiConsegne extends Page
|
|
{
|
|
protected static ?string $navigationLabel = 'Passaggi di consegne';
|
|
|
|
protected static ?string $title = 'Passaggi di consegne';
|
|
|
|
protected static BackedEnum|string|null $navigationIcon = 'heroicon-o-archive-box-arrow-down';
|
|
|
|
protected static UnitEnum|string|null $navigationGroup = 'Strumenti';
|
|
|
|
protected static ?int $navigationSort = 50;
|
|
|
|
protected static ?string $slug = 'strumenti/passaggi-di-consegne';
|
|
|
|
protected string $view = 'filament.pages.strumenti.passaggi-di-consegne';
|
|
}
|