brand logo translateable in html title
By default, Filament will use your app's name as a brand logo in the admin panel.
Using this link https://filamentphp.com/docs/2.x/admin/appearance#changing-the-brand-logo I can change my brand to translateable, but how can I change title?6 Replies
I publish
base.blade.php
and change the title and it can change, not sure is this correct approach.. I wonder is there an easy and correct wayYou can set the config dynamically in AppServiceProvider :
This work on initial, but cannot update after changing language
Did you add it to your translations? In
lang/...
Of course, but it cannot change.. I am using https://github.com/bezhanSalleh/filament-language-switch plugin
GitHub
GitHub - bezhanSalleh/filament-language-switch: Zero config Languag...
Zero config Language Switch(Changer/Localizer) plugin for Filamentphp Admin - GitHub - bezhanSalleh/filament-language-switch: Zero config Language Switch(Changer/Localizer) plugin for Filamentphp A...
Ok, I'm not familiar with this plugin... I'm using a simple
Select
in my user profile page so people can set their preferred locale. The code above seems to work for me.