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
Solution:Jump to solution
in service provider or middleware
add
```php
FilamentView::registerRenderHook(
PanelsRenderHook::BODY_START,...
4 Replies
you can use the render hook:
TablesRenderHook::TOOLBAR_SEARCH_AFTER
https://filamentphp.com/docs/3.x/support/render-hooks#table-builder-render-hooksI'm a beginner but how/where can I use this?
Solution
in service provider or middleware
add
as it explained here:
https://filamentphp.com/docs/3.x/support/render-hooks#registering-render-hooks
Thank you