Answers for "job with queue name in laravel"

PHP
0

job with queue name in laravel

// You can disaptch a job with queue name as following
dispatch(new YourJob())->onQueue('my_queue');

// to make it work
php artisan queue:work --queue=my_queue
Posted by: Guest on March-10-2022

Code answers related to "job with queue name in laravel"

Browse Popular Code Answers by Language