Livewire lifecycle hooks not working in nested widget
Hey, I don't know if this is a filament specific or a livewire thing but I though I'd also ask here.
Hey, I have 2 livewire components. One is called
Map
and has the property $filters
. It is a filament page. The other is called MapWidget
and get's the property from the Map
component. It is a filament widget. Now I want to call code when the $filters
property of the child component MapWidget
updates. However the hooks don't seem to fire.
Map:
MapWidget
When putting the updated
function into the parent component it works as expected. I can also see that the data changes when I echo it in the view. The only thing not working are these hooks.0 Replies