Livewire Component Not Working
Hello, I add a livewire component consisting on a select of options. When the select changes, nothing happens (can't see a network request on devtools).
This is the livewire component:
The component renders fine, but on change nothing happens.
3 Replies
This is the blade code:
And this is how I included:
What I'm trying to do here is a global filter on the top navbar. I'm trying to achieve that after a selection, a session variable is setted and trigger a filament component refresh (resource, page). models already have a scope that checks this session variable to query the results.
shouldn't you use
wire:model.live
?That did it! Thank you Leandro!
🙂