InterviewSolution
Saved Bookmarks
| 1. |
How to run job queue through command line in laravel? |
|
Answer» You can run this ARTISAN Command php artisan QUEUE:work --tries=3 OR --once --queue=JobQueueName You can use both --tries or --once. When you will use --once then you command will execute singly and when you will use --tries=2 the it will execute TWO TIMES and further. |
|