18 lines
335 B
PHP
18 lines
335 B
PHP
<?php
|
|
|
|
namespace App\Filament\Pages;
|
|
|
|
use Filament\Pages\Dashboard as BaseDashboard;
|
|
|
|
class Dashboard extends BaseDashboard
|
|
{
|
|
protected static string|\BackedEnum|null $navigationIcon = 'heroicon-o-home';
|
|
|
|
protected static ?string $title = 'Műszerfal';
|
|
|
|
public function getWidgets(): array
|
|
{
|
|
return [];
|
|
}
|
|
}
|