How to display text on top of all screens/pages

What I am trying to do: I'm trying to display text (the application name) on top of all screens/pages of a filament admin panel. What I did: Searched Discord, YouTube, and the Docs. My Issue: I'm sorry, I cannot find it. But i'm still searching.
No description
Solution:
Filament Mastery
Filament Render Hooks: example with authentication pages - Filament...
Learn how to customize Filament panels using Render Hooks. Discover the power of clean and maintainable customizations in Filament!
Jump to solution
4 Replies
Solution
Julien B. (aka yebor974)
Filament Mastery
Filament Render Hooks: example with authentication pages - Filament...
Learn how to customize Filament panels using Render Hooks. Discover the power of clean and maintainable customizations in Filament!
Julien B. (aka yebor974)
try for PanelsRenderHook::TOPBAR_START
Eskie
Eskie2mo ago
Use renderhooks.. example
->renderHook(
PanelsRenderHook::CONTENT_START,
fn (): string => Blade::render('@livewire(\'member.modals.send-money-confirmation-modal\')'),
)
->renderHook(
PanelsRenderHook::CONTENT_START,
fn (): string => Blade::render('@livewire(\'member.modals.send-money-confirmation-modal\')'),
)
put that in your PanelProvider class
neuroticimbecile
neuroticimbecileOP2mo ago
Thank you very much. I will try these and report back.

Did you find this page helpful?