23 lines
471 B
PHP
23 lines
471 B
PHP
<?php
|
|
|
|
namespace App\Filament\Pages;
|
|
|
|
use Filament\Pages\Dashboard as BaseDashboard;
|
|
use Illuminate\Contracts\Support\Htmlable;
|
|
use Illuminate\Support\HtmlString;
|
|
|
|
class Dashboard extends BaseDashboard
|
|
{
|
|
protected string $view = 'filament.pages.dashboard';
|
|
|
|
public function getTitle(): string|Htmlable
|
|
{
|
|
return __('navigation.dashboard.title');
|
|
}
|
|
|
|
public function getHeading(): string|Htmlable
|
|
{
|
|
return new HtmlString('');
|
|
}
|
|
}
|