Emit Livewire event from Filament form
I have a Livewire component with some existing filters that I'd like to replace with a Filament form. I've followed what's outlined in the documentation here:
https://filamentphp.com/docs/2.x/forms/getting-started#preparing-your-livewire-component
The issue I'm having is the Livewire properties that the fields are bound to don't seem to be updating until something else in the component forces a render, so I'd like to emit an event from the fields on change to force that render. Is there a way to accomplish this?
2 Replies
->reactive()
on fields that you want to be ..... reactive πAh, perfect - thank you!