mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 04:20:08 +00:00
a47e3225e5
Co-authored-by: Sven van Ginkel <svenvanginkel@icloud.com> Co-authored-by: Alex Justesen <1144087+alexjustesen@users.noreply.github.com>
23 lines
463 B
PHP
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');
|
|
}
|
|
}
|