PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php $array = [ 'attractions' => collect([ [ 'id' => 1, 'region' => 'Ivan', ], [ 'id' => 2, 'region' => 'Ivan', ], [ 'id' => 3, 'region' => 'Lenin', ], ]), 'trips' => collect([ [ 'id' => 3, 'region' => 'Ivan', ], [ 'id' => 4, 'region' => 'Ivan', ], ]), ]; $collection = collect($array); // $grouped = $collection['attractions']->mapToGroups(function ($item, $key) { // return [$item['region'] => $item]; // }); var_export($collection);
Show:  
Copy Clear