SelectFilter on NavBar

Hello, I wonder if is possible to put a SelectFilter in the top navigation bar to filter table results on page body...? (instead of table top/bottom)
3 Replies
Patrick Boivin
Patrick Boivin11mo ago
I think you can probably find a creative solution with the panels::global-search.start render hook: https://filamentphp.com/docs/3.x/support/render-hooks#registering-render-hooks
Patrick Boivin
Patrick Boivin11mo ago
This is outside of the Livewire page component so you'll need to put a regular <select> field there, then dispatch an event, probably with the Livewire.dispatch() global
AmauryCid
AmauryCid11mo ago
Thank you Patrick!!