FilamentF
Filament15mo ago
Bruno

How to add an Action to the table next to the search?

I need to add an action to my form table but I don't know how
image.png
Solution
in service provider or middleware
add
FilamentView::registerRenderHook(
    PanelsRenderHook::BODY_START,
    fn (): View => view('impersonation-banner'),
);


as it explained here:
https://filamentphp.com/docs/3.x/support/render-hooks#registering-render-hooks
Was this page helpful?