
Laravel Horizon setup . @code4mk
Horizon provides a beautiful dashboard and code-driven configuration for your Laravel powered Redis queues. Horizon allows you to easily monitor key metrics of your queue system such as job throughput, runtime, and job failures.
All of your worker configuration is stored in a single, simple configuration file, allowing your configuration to stay in source control where your entire team can collaborate. Taylor Otwell publish beta version . laravel 5.5 and php 7.1
- Horizon setup :
# Redis Install
First install redis in your machine . if you don’t install redis in your machine Horizon does not work properly .
If your machine is windows download : Redis-x64–3.2.100.msi and install this .
# Horizon
Now time for horizon . setp by step follow instructions …………..
- step:1
composer require laravel/horizon- step:2
Set this in your provider :
Laravel\Horizon\HorizonServiceProvider::class,- step: 4
composer dump-autoload- step:5
php artisan vendor:publish- step:6
php artisan horizonYour setup is done now check

