Place a component next to the title.
Is there any way to add a component (customized or not) to the right side of a EditResource title? A TextInput or even a custom component.

Solution:Jump to solution
You may use something called Render Hooks:
https://filamentphp.com/docs/3.x/support/render-hooks
I haven't used what you're asking for but I think its:
PAGE_HEADER_ACTIONS_AFTER. You may play around with the hooks to see which one fits your requirement. ...
Filament Daily
YouTube
Filament: See All Render Hooks Visually (Cheat Sheet)
We created a project to show WHERE different render hooks are on the Filament page.
Link: https://filamentexamples.com/tutorial/render-hooks-cheat-sheet
2 Replies
Solution
You may use something called Render Hooks:
https://filamentphp.com/docs/3.x/support/render-hooks
I haven't used what you're asking for but I think its:
PAGE_HEADER_ACTIONS_AFTER. You may play around with the hooks to see which one fits your requirement.
How to use
either in
AppServiceProvider
:
or in the AdminPanelProvider
:
Check this video out as it helps very much with render hooks:
https://www.youtube.com/watch?v=xQsHHk4Mu_EFilament Daily
YouTube
Filament: See All Render Hooks Visually (Cheat Sheet)
We created a project to show WHERE different render hooks are on the Filament page.
Link: https://filamentexamples.com/tutorial/render-hooks-cheat-sheet
I would like to put a badge next to the title in EditResource. I think this will help me, Thank you very much.