# app/Providers/HorizonServiceProvider.php <?php namespace App\Providers; use Laravel\Horizon\Horizon; use Illuminate\Support\Facades\Gate; use Laravel\Horizon\HorizonApplicationServiceProvider; class HorizonServiceProvider extends HorizonApplicationServiceProvider { public function boot() { parent::boot(); Horizon::night(); } /* other codes*/ }
Do note that if you recently just updated your horizon, do run the "horizon:publish" command to get the latest changes for the assets file.
php artisan horizon:publish
Leave a reply