Laravel Livewire 3, inline scripts do not work, no error, doesnt trigger event
New to Livewire 3 and needing to use inline javascripts but its not working. on my layout.blade.php , i have added stack('scripts') on my livewire component partial i have added @push('scripts') <script> document.addEventListener('livewire:init', function () { console.log('loaded'); }); </script> @endpush…