Laravel Tutorials

Deep Array Manipulation with Laravel's replaceRecursive Method

Published Updated
Deep Array Manipulation with Laravel's replaceRecursive Method image

Laravel's replaceRecursive method offers a powerful solution for updating nested arrays while preserving unmodified values, particularly useful when working with complex configuration structures.

$collection = collect([
'user' => [
'name' => 'John',
'settings' => [
'theme' => 'dark',
'notifications' => true,
]
]
]);
 
$updated = $collection->replaceRecursive([
'user' => [
'settings' => [
'theme' => 'light'
]
]
]);

Let's explore a practical example with a configurable dashboard system:

<?php
 
namespace App\Services;
use Illuminate\Support\Collection;
 
class DashboardConfigurationService
{
public function mergeUserPreferences(array $defaultConfig, array $userPreferences): array
{
return collect($defaultConfig)->replaceRecursive($userPreferences)->all();
}
 
public function getConfiguration(User $user): array
{
$defaultConfig = [
'layout' => [
'sidebar' => [
'position' => 'left',
'width' => 250,
'collapsed' => false
],
'theme' => [
'mode' => 'light',
'color' => 'blue',
'font_size' => 14
],
'widgets' => [
'weather' => true,
'calendar' => true,
'notifications' => true
]
]
];
 
return $this->mergeUserPreferences(
$defaultConfig,
$user->dashboard_preferences ?? []
);
}
}

ReplaceRecursive provides an elegant way to handle deep array updates while maintaining unspecified values, perfect for managing configuration merges and preference systems.

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