阅读(3204)
赞(2)
Laravel 8 put() {#collection-method}
2021-07-01 15:42:03 更新
put 方法在集合内设置给定的键和值:
$collection = collect(['product_id' => 1, 'name' => 'Desk']);
$collection->put('price', 100);
$collection->all();
// ['product_id' => 1, 'name' => 'Desk', 'price' => 100]
