laravel jobs vs command code example
Example 1: run jobs laravel
php artisan queue:work --queue=high,default
Example 2: how create jobs in laravel example
php artisan make:job ProcessPodcast
php artisan queue:work --queue=high,default
php artisan make:job ProcessPodcast