Events emitted with javascript from blade views are not recorded in the events tab.
<script type="module">
document.addEventListener('livewire:initialized', () => {
Livewire.dispatch('eventNameHere', eventDataHere);
});
</script>
The event eventNameHere (which is picked up in the component correctly with #[On('eventNameHere')] is not registered by wire-spy.
Events emitted with javascript from blade views are not recorded in the events tab.
The event eventNameHere (which is picked up in the component correctly with #[On('eventNameHere')] is not registered by wire-spy.