php artisan make:job
Code GenerationCreate a new job class
Options & Flags
Available options for this command
--syncIndicates that job should be synchronous
Examples
Common usage examples
Create a queued job
php artisan make:job ProcessPodcastNotes
- Jobs are dispatched to queue by default
- Use dispatch() helper to queue jobs
Related Commands
You might also find these useful