通知短信+运营短信,5秒速达,支持群发助手一键发送🚀高效触达和通知客户 广告
# put方法 在集合内设置给定的键值对。 ``` $collection = collect(['product_id' => 1, 'name' => 'Desk']); $collection->put('price', 100); $collection->all(); // ['product_id' => 1, 'name' => 'Desk', 'price' => 100] ```