© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•17mo ago•
2 replies
pace

It's possible change the "default title" for all tabs?

Currently filament show the (of the tab) title using this code in layout/base.blade.php:

 @php
            $title = trim(strip_tags(($livewire ?? null)?->getTitle() ?? ''));
            $brandName = trim(strip_tags(filament()->getBrandName()));
 @endphp

        <title>
            {{ filled($title) ? "{$title} - " : null }} {{ $brandName }}
        </title>
 @php
            $title = trim(strip_tags(($livewire ?? null)?->getTitle() ?? ''));
            $brandName = trim(strip_tags(filament()->getBrandName()));
 @endphp

        <title>
            {{ filled($title) ? "{$title} - " : null }} {{ $brandName }}
        </title>


But I need to change that and show the brandname before:

{{ $brandName }} - {{ filled($title) ? "{$title} " : null }} 
{{ $brandName }} - {{ filled($title) ? "{$title} " : null }} 



How can I change ( in a safe way ) this file? I can create some view to override? Or have another solution? But I don't think override the base file is a good idea.
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

It's possible change the <title> of the page without change the dashboard title
FilamentFFilament / ❓┊help
17mo ago
Is it possible to add a default emptyStateHeading for all the tables?
FilamentFFilament / ❓┊help
2y ago
I can't change default create action's notification title
FilamentFFilament / ❓┊help
2y ago
Dynamic title in tabs
FilamentFFilament / ❓┊help
3y ago