diff --git a/app/Filament/User/Pages/AboutUs.php b/app/Filament/User/Pages/AboutUs.php index febe3c3..d62c2c2 100644 --- a/app/Filament/User/Pages/AboutUs.php +++ b/app/Filament/User/Pages/AboutUs.php @@ -9,4 +9,6 @@ class AboutUs extends Page protected static ?string $navigationIcon = 'heroicon-o-information-circle'; protected static string $view = 'filament.user.pages.about-us'; -} + + protected static ?int $navigationSort = 6; // Bottom +} \ No newline at end of file diff --git a/app/Filament/User/Pages/Deposits.php b/app/Filament/User/Pages/Deposits.php index 61f8fa5..f7f6d26 100644 --- a/app/Filament/User/Pages/Deposits.php +++ b/app/Filament/User/Pages/Deposits.php @@ -9,4 +9,6 @@ class Deposits extends Page protected static ?string $navigationIcon = 'heroicon-o-currency-dollar'; protected static string $view = 'filament.user.pages.deposits'; -} + + protected static ?int $navigationSort = 2; +} \ No newline at end of file diff --git a/app/Filament/User/Pages/Lobby.php b/app/Filament/User/Pages/Lobby.php index fae1221..f5989e8 100644 --- a/app/Filament/User/Pages/Lobby.php +++ b/app/Filament/User/Pages/Lobby.php @@ -2,11 +2,13 @@ namespace App\Filament\User\Pages; -use Filament\Pages\Page; +use Filament\Pages\Dashboard; -class Lobby extends Page +class Lobby extends Dashboard { - protected static ?string $navigationIcon = 'heroicon-o-document-text'; + protected static ?string $navigationIcon = 'heroicon-o-home'; protected static string $view = 'filament.user.pages.lobby'; -} + + protected static ?int $navigationSort = 1; // Top +} \ No newline at end of file diff --git a/app/Filament/User/Pages/Profile.php b/app/Filament/User/Pages/Profile.php index 65a4abe..ae55adf 100644 --- a/app/Filament/User/Pages/Profile.php +++ b/app/Filament/User/Pages/Profile.php @@ -9,4 +9,6 @@ class Profile extends Page protected static ?string $navigationIcon = 'heroicon-o-user-circle'; protected static string $view = 'filament.user.pages.profile'; -} + + protected static ?int $navigationSort = 4; +} \ No newline at end of file diff --git a/app/Filament/User/Pages/Transactions.php b/app/Filament/User/Pages/Transactions.php index 3fdd23d..8b7460e 100644 --- a/app/Filament/User/Pages/Transactions.php +++ b/app/Filament/User/Pages/Transactions.php @@ -9,4 +9,6 @@ class Transactions extends Page protected static ?string $navigationIcon = 'heroicon-o-document-text'; protected static string $view = 'filament.user.pages.transactions'; -} + + protected static ?int $navigationSort = 3; +} \ No newline at end of file diff --git a/app/Filament/User/Pages/VIP.php b/app/Filament/User/Pages/VIP.php index fbe80e2..f1f188e 100644 --- a/app/Filament/User/Pages/VIP.php +++ b/app/Filament/User/Pages/VIP.php @@ -9,4 +9,6 @@ class VIP extends Page protected static ?string $navigationIcon = 'heroicon-o-star'; protected static string $view = 'filament.user.pages.v-i-p'; -} + + protected static ?int $navigationSort = 5; +} \ No newline at end of file