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 →
Laravel Image Responses: Serve Resized Images From Routes image

Laravel Image Responses: Serve Resized Images From Routes

Read article
Pause All Laravel Queues During a Deploy image

Pause All Laravel Queues During a Deploy

Read article
Laravel Terminal UI for the artisan dev Command image

Laravel Terminal UI for the artisan dev Command

Read article
Pause All Queues and a New artisan dev UI in Laravel 13.25 image

Pause All Queues and a New artisan dev UI in Laravel 13.25

Read article
Laravel monitoring that doesn't bill you by your traffic image

Laravel monitoring that doesn't bill you by your traffic

Read article
Mock PHP Classes in Tests With the Double Library image

Mock PHP Classes in Tests With the Double Library

Read article