laravel queu always work code example
Example 1: laravel retry failed jobs command
php artisan queue:retry all
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 &