我正在使用Laravel Framework 6.16.0并从字符串创建日期对象,以便我可以将其输入到我的数据库中:$transaction_date = Carbon::createFromFormat('Y-m-d', $tradeDate);$filling_Date = Carbon::createFromFormat('Y-m-d H:i:s', $fillingDate, 'UTC');$product = Product::updateOrCreate( [ 'price' => trim($price), 'qty' => $qty, 'companies_id' => $company->id, 'persons_id' => $person->id, 'amount_range' => $owned, 'filling_date' => $filling_Date, 'transaction_date' => $transaction_date, ], []);运行上述查询时,即使我的产品已经存在,我的产品也不会在数据库中被发现$filling_Date且不匹配。$transaction_date我猜测,原因是我正在创建一个“新”Carbon 对象。有什么建议如何在数据库中匹配filling_date和吗?transaction_date我很感谢你的回复!
- 1 回答
- 0 关注
- 69 浏览
添加回答
举报
0/150
提交
取消