Is possible to set the panel with brand name + brand logo?

app/Providers/Filament/AdminPanelProvider.php if i set brandLogo, the brand name doesnt appear, can i make them to appear both somehow???
->brandName('test')
->brandLogo('myPath.png')
->brandName('test')
->brandLogo('myPath.png')
2 Replies
Vp
Vp5mo ago
Use like this ->brandLogo(fn () => view('filament.admin.logo')); and inside logo.blade.php you put Name & logo together
ericmp #2
ericmp #25mo ago
ohh cool trick. ill try it but which is the route of the view resources livewire filament admin logo? i said nothig, yeah the file path is: resources/views/filament/admin/logo.blade.php thanks!