Laravel Tutorials

Simplified Batch Job Creation with Laravel's Enhanced Artisan Command

Published
Simplified Batch Job Creation with Laravel's Enhanced Artisan Command image

Laravel's job generation command now streamlines batch processing setup through an integrated flag option. This enhancement eliminates manual configuration steps while ensuring developers include essential batch handling patterns from the start.

Traditional batch job setup required multiple manual steps after initial job creation:

php artisan make:job ProcessDocument
 
use Illuminate\Bus\Batchable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Queue\Queueable;
 
class ProcessDocument implements ShouldQueue
{
use Batchable, Queueable;
 
public function handle(): void
{
if ($this->batch()->cancelled()) {
return;
}
 
// Processing logic here
}
}

The enhanced command generates complete batch-ready jobs automatically:

php artisan make:job ProcessDocument --batched

This single command creates fully configured classes with necessary traits and cancellation handling integrated throughout the implementation.

Building a comprehensive document processing system demonstrates the practical advantages of automated batch job scaffolding:

namespace App\Jobs;
 
use App\Models\Document;
use Illuminate\Bus\Batchable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Queue\Queueable;
 
class ProcessDocument implements ShouldQueue
{
use Batchable, Queueable;
 
public function __construct(
public Document $document
) {}
 
public function handle(): void
{
if ($this->batch()->cancelled()) {
return;
}
 
$this->extractText();
$this->generateThumbnail();
$this->performOcr();
 
$this->document->markAsProcessed();
}
 
private function extractText(): void
{
//
}
 
private function generateThumbnail(): void
{
//
}
 
private function performOcr(): void
{
//
}
}
 
class DocumentController
{
public function processBatch(Collection $documents)
{
$jobs = $documents->map(
fn($document) => new ProcessDocument($document)
);
 
$batch = Bus::batch($jobs)
->name("Document Processing Batch")
->onQueue('document-processing')
->dispatch();
 
return response()->json([
'batch_id' => $batch->id,
'job_count' => $batch->totalJobs
]);
}
}

The automated scaffolding ensures critical batch cancellation checks are present from project initialization, preventing inconsistent data states and incomplete processing scenarios that could arise from manual implementation oversights.

Harris Raftopoulos photo

Senior Software Engineer • Staff & Educator @ Laravel News • Co-organizer @ Laravel Greece Meetup

Sponsored

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
Image Dominant Color and HEIC Support in Laravel 13.24 image

Image Dominant Color and HEIC Support in Laravel 13.24

Read article
Official Laravel Zed Extension: LSP for PHP & Blade image

Official Laravel Zed Extension: LSP for PHP & Blade

Read article
Laravel Head: Manage Meta Tags, Open Graph, and JSON-LD image

Laravel Head: Manage Meta Tags, Open Graph, and JSON-LD

Read article
PhpStorm 2026.2 Released image

PhpStorm 2026.2 Released

Read article
Laravel Doctor: Diagnose Your App With One Artisan Command image

Laravel Doctor: Diagnose Your App With One Artisan Command

Read article
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article