Customize or override default behavior of page title
Filament generates page titles in the format of [Page Title] - [APP_NAME]. However, I would like to change the last part of the title to something other than the APP_NAME.
I've found solutions for changing the part before the dash, but I haven't been able to find a way to customize or override the part after the dash.
Is there a way to achieve this in Filament?
Solution:Jump to solution
The title is made up from the page title and the brand name:
```html
<title>
{{ filled($title = strip_tags(($livewire ?? null)?->getTitle() ?? '')) ? "{$title} - " : null }}
{{ strip_tags(filament()->getBrandName()) }}...
1 Reply
Solution
The title is made up from the page title and the brand name:
So you can just define a different
->brandName()
on the Panel