Answers for "collection combine field laravel"

PHP
0

laravel collection combine

$collection = collect(['name', 'age']);

$combined = $collection->combine(['George', 29]);

$combined->all();

// ['name' => 'George', 'age' => 29]
Posted by: Guest on July-24-2021

Code answers related to "collection combine field laravel"

Browse Popular Code Answers by Language