I have an input field updated by the selected option, that works. However, I need to call a method in the component once the input field have value has been updated. This does not work.
<x-jet-input wire:model="destinations" id="destinations" class="form-control" type="text" required wire:change="distances" readonly/>
I tried, wire:dirty, wire:self, not working also.
I am also listening for the ‘distances’ in the component.
I am new with livewire, kind of mixed up.
Thank you in advance.