laravel queue on server code example
Example 1: run jobs laravel
php artisan queue:work --queue=high,default
Example 2: running queue on server
nohup php artisan queue:work --daemon &
nohup php artisan queue:work --daemon > /dev/null 2>&1 &
nohup php artisan queue:work --daemon > app/storage/logs/laravel.log &