Laravel Horizon is a dashboard and queue monitoring tool for Laravel applications. It provides real-time insights into job processing, queue performance, and failed jobs, making it easier to manage and optimize Laravel queues.
Horizon was introduced by the Laravel team to provide a visual interface for monitoring and managing queues powered by Redis.
Install Horizon:
composer require laravel/horizon
php artisan horizon:install
php artisan migrate
Start Horizon:
php artisan horizon
Access the dashboard at /horizon
to monitor queues and job statuses. Horizon provides valuable insights for maintaining efficient and reliable job processing.