1/*
2in Laravel
3livewire.js can be 404 not found because your
4root directory is not set on default
5to make it work:
61. go to config/livewire.php => find 'asset_url' and set it to your
7 public folder, for example:
8 'asset_url' => "http://localhost/{you project's name}/public",
92.now run these command in command panel
10 php artisan config:cache
11 php artisan view:clear
12 php artisan vendor:publish --tag=livewire:config
13 these command just refreshing everything to make the changes come in effect
143.now try it.....i hope it will help
15*/