undot method

PHOTO EMBED

Thu Dec 02 2021 08:04:47 GMT+0000 (Coordinated Universal Time)

Saved by @sayedsadat344 #php #laravel

//original
$dotted = [
    'user.name' => 'foo',
    'user.occupation' => 'bar',
];
 
// Converts it back to the original form
Arr::undot($dotted);

// Results in...
$resultArray = [
    'user' => [
        'name' => 'foo',
        'occupation' => 'bar',
    ]
];
content_copyCOPY

https://laravel-news.com/laravel-8-74-0