// 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
php artisan queue:work --timeout=60
ProcessPodcast::dispatch($podcast)->beforeCommit();