Listener does not listen for triggered event – LIVEWIRE – Laravel
I have a button on my blade that calls a select method, this method emitted an event but it is not arriving Button blade: <div class="ml-auto"> <button class="br-button secondary circle" type="button" aria-label="Selecionar" wire:click="selecionar({{ json_encode($user) }})"> <i class="fas fa-arrow-right"></i> </button> </div>…