Appearance
在集合内设置给定的键值对。
$collect = collect(['product_id' => 1, 'name' => 'Desk']); $collect->put('price', 100); $collect->all(); // ['product_id' => 1, 'name' => 'Desk', 'price' => 100]