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
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-hooksThis 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()
globalThank you Patrick!!