Files
Skunk-Lounge/app/Filament/User/Pages/Lobby.php
2025-09-05 23:48:39 +02:00

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
}