This commit is contained in:
Lance Pioch 2024-04-11 00:51:36 -04:00
parent a4fb9eea40
commit 93ec3bdfc4
2 changed files with 7 additions and 3 deletions

View File

@ -9,14 +9,18 @@ use App\Models\Server;
use App\Models\User; use App\Models\User;
use Filament\Pages\Page; use Filament\Pages\Page;
class Introduction extends Page class Dashboard extends Page
{ {
protected static ?string $navigationIcon = 'heroicon-o-document-text'; protected static ?string $navigationIcon = 'tabler-layout-dashboard';
protected static string $view = 'filament.pages.introduction'; protected static string $view = 'filament.pages.dashboard';
protected ?string $heading = ''; protected ?string $heading = '';
protected static ?string $title = 'Dashboard';
protected static ?string $slug = '/';
public string $activeTab = 'nodes'; public string $activeTab = 'nodes';
public function getViewData(): array public function getViewData(): array