14 lines
295 B
PHP
14 lines
295 B
PHP
<?php
|
|
|
|
namespace App\Filament\User\Pages;
|
|
|
|
use Filament\Pages\Dashboard;
|
|
|
|
class Lobby extends Dashboard
|
|
{
|
|
protected static ?string $navigationIcon = 'heroicon-o-home';
|
|
|
|
protected static string $view = 'filament.user.pages.lobby';
|
|
|
|
protected static ?int $navigationSort = 1; // Top
|
|
} |