Laravel 8 put() {#collection-method}
2021-07-19 09:45 更新
put
方法在集合内设置给定的键和值:
$collection = collect(['product_id' => 1, 'name' => 'Desk']);
$collection->put('price', 100);
$collection->all();
// ['product_id' => 1, 'name' => 'Desk', 'price' => 100]
以上内容是否对您有帮助:
更多建议: