Handle livewire events in both PHP and JS
I have this component called beat-player, on the PHP code I receive a dispatched event from another component and it works: <?php namespace AppLivewire; use LivewireComponent; use LivewireAttributesOn; class BeatPlayer extends Component { public $scores; public $difficulty; public $note_type; public…