25 lines
569 B
PHP
25 lines
569 B
PHP
<?php
|
|
|
|
namespace App\Filament\Pages\Gescon;
|
|
|
|
use BackedEnum;
|
|
use Filament\Pages\Page;
|
|
use UnitEnum;
|
|
|
|
class GesconHome extends Page
|
|
{
|
|
protected static ?string $navigationLabel = 'Home GESCON';
|
|
|
|
protected static ?string $title = 'Home GESCON';
|
|
|
|
protected static BackedEnum|string|null $navigationIcon = 'heroicon-o-squares-2x2';
|
|
|
|
protected static UnitEnum|string|null $navigationGroup = 'GESCON';
|
|
|
|
protected static ?int $navigationSort = 1;
|
|
|
|
protected static ?string $slug = 'gescon';
|
|
|
|
protected string $view = 'filament.pages.gescon.home';
|
|
}
|