Posts

Showing posts from July, 2021

Making Livewire Run on SHared Hosting

  and you can set your  APP_URL  in  .env  file and  livewire.php  file inside  config/livewire.php asset_url to 'asset_url' => ' http://shop.mysubdomain.com ', 2.  run:  php artisan livewire:publish then open  config/livewire.php  change  'asset_url' => null  to  'asset_url' => 'http://localhost' 3. Open the  config/livewire.php  edit the line 'asset_url' => null , to read 'asset_url' => 'http://localhost/your_project/public/', 'asset_url' =>  https://www.yourporject.com/public ,