Answers for "laravel collect add"

PHP
2

add to collection laravel

$item = collect();
$item->push($product);
Posted by: Guest on November-24-2020
0

Adding data to a laravel collection

$items->put('products', $product);
Posted by: Guest on September-08-2021
0

laravel collection put

$collection = collect(['product_id' => 1, 'name' => 'Desk']);

$collection->put('price', 100);

$collection->all();

// ['product_id' => 1, 'name' => 'Desk', 'price' => 100]
Posted by: Guest on July-24-2021

Browse Popular Code Answers by Language