© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
10 replies
Timster8989

Hiding "Dashboard" from a dashboard

Please nobody take this as whining, but as a constructive feedback: Hiding text "Dashboard" from your default dashboard really shouldn't be as hard as it has been so far.

Here is my custom Dashboard page defined in the panel (I can see it's being used as the navigation name does get updated):
class Dashboard extends BasePage
{

    protected static ?string $title = 'Home';
    protected ?string $heading = '';
    protected ?string $subheading = '';

    public function getHeading(): string | Htmlable
    {
        return '';
    }

    public function getSubheading(): string | Htmlable | null
    {
        return '';
    }

    public function getTitle(): string | Htmlable
    {
        return '';
    }
}
class Dashboard extends BasePage
{

    protected static ?string $title = 'Home';
    protected ?string $heading = '';
    protected ?string $subheading = '';

    public function getHeading(): string | Htmlable
    {
        return '';
    }

    public function getSubheading(): string | Htmlable | null
    {
        return '';
    }

    public function getTitle(): string | Htmlable
    {
        return '';
    }
}

Ofc I can hide it with CSS, but this shouldn't be the way. Any pointers are greatly appreciated!
Screenshot_2023-09-09_at_11.13.34.png
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Hiding dashboards conditionally (from navigation)
FilamentFFilament / ❓┊help
3y ago
Help hiding artifact from Resource
FilamentFFilament / ❓┊help
2y ago
Help hiding some options in sidebar and dashboard
FilamentFFilament / ❓┊help
3y ago
Open up a modal from a dashboard widget
FilamentFFilament / ❓┊help
3y ago