Files
speedtest-tracker/app/Filament/Pages/Dashboard.php
T
Alex Justesen a47e3225e5 Release v1.12.0 (#2493)
Co-authored-by: Sven van Ginkel <svenvanginkel@icloud.com>
Co-authored-by: Alex Justesen <1144087+alexjustesen@users.noreply.github.com>
2025-12-05 15:33:44 -05:00

23 lines
463 B
PHP

<?php
namespace App\Filament\Pages;
use Filament\Pages\Dashboard as BasePage;
class Dashboard extends BasePage
{
protected static string|\BackedEnum|null $navigationIcon = 'tabler-layout-dashboard';
protected string $view = 'filament.pages.dashboard';
public function getTitle(): string
{
return __('dashboard.title');
}
public static function getNavigationLabel(): string
{
return __('dashboard.title');
}
}