2 Replies
You can get around not having header if you do something like this:
protected function getHeading(): string|Htmlable
{
return '';
}
Problem is if you define
protected ?string $heading =null;
it falls back to getTitle()
which automatically creates heading depending on page namehttps://filamentphp.com/docs/2.x/admin/dashboard/getting-started#customizing-the-dashboard-page
then inside your new Dashboard class call
Filament
Getting started - Dashboard - Admin Panel - Filament
The elegant TALL stack admin panel for Laravel artisans.