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

masteringlaravel logo
Laravel Code Review

Get expert guidance in a few days with a Laravel code review

Visit Laravel Code Review

The latest

View all →
The Laracon Archive image

The Laracon Archive

Read article
Group Adjacent Collection Items in Laravel with chunkBy() image

Group Adjacent Collection Items in Laravel with chunkBy()

Read article
Laravel queue:work Now Prints Why the Worker Stopped image

Laravel queue:work Now Prints Why the Worker Stopped

Read article
Sidecar Brings Statamic's Control Panel to Your Existing Markdown Sites image

Sidecar Brings Statamic's Control Panel to Your Existing Markdown Sites

Read article
Collections chunkBy() and Storage Path Hardening in Laravel 13.30 image

Collections chunkBy() and Storage Path Hardening in Laravel 13.30

Read article
Forte: Parse and Rewrite Laravel Blade Templates image

Forte: Parse and Rewrite Laravel Blade Templates

Read article