Laravel Tutorials

Extracting Sequential Data with Laravel's takeWhile

Published Updated
Extracting Sequential Data with Laravel's takeWhile image

Laravel's takeWhile method provides precise control over collection filtering, allowing you to extract elements that consecutively meet a condition until the first failure occurs.

$numbers = collect([1, 2, 3, 4, 2, 1]);
 
$ascending = $numbers->takeWhile(function ($number, $key) use ($numbers) {
if ($key === 0) return true;
return $number > $numbers[$key - 1];
});
// Result: [1, 2, 3, 4]

Let's explore a practical example of managing an order processing system with status tracking:

<?php
 
namespace App\Services;
 
use App\Models\Order;
use App\Models\OrderStatus;
use Illuminate\Support\Collection;
 
class OrderProcessingService
{
public function getSuccessfulSteps(Order $order): Collection
{
return $order->statusUpdates()
->oldest()
->get()
->takeWhile(function (OrderStatus $status) {
return $status->successful;
})
->map(function (OrderStatus $status) {
return [
'step' => $status->step_name,
'completed_at' => $status->created_at->format('Y-m-d H:i:s'),
'processor' => $status->processor_name
];
});
}
 
public function validateProcessingSequence(Collection $steps): bool
{
$requiredOrder = ['payment', 'inventory', 'packaging', 'shipping'];
$currentStep = 0;
 
return $steps->takeWhile(function ($step) use ($requiredOrder, &$currentStep) {
return $step['type'] === $requiredOrder[$currentStep++] ?? null;
})->count() === count($requiredOrder);
}
}

TakeWhile offers a powerful way to work with sequential data, perfect for processing status updates, validating sequences, or analyzing trends in your data.

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 →
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