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

acquaintsoft logo
Acquaint Softtech

Hire Laravel developers with AI expertise at $20/hr. Get started in 48 hours.

Visit Acquaint Softtech

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article