这个错误我已经处理了几个小时了,我自己不能解决它。
下面是代码:
如果您有任何问题,请点击这里返回。如果您有问题,请点击这里返回。
$repeated_entry_update = Product_Market::where('produto_id', '=', $product->id)
->where('market_id', '=', $market->id);
if($repeated_entry->count())
{
$repeated_entry_update->update(['amount_requested' => $repeated_entry->amount_requested + $request->product_amount,
'amount_left' => $repeated_entry->amount_requested + $request->product_amount,
]);
}
else
{
product_market::create(['produto_id' => $product['id'],
'market_id' => $market['id'], //saves the info ghatered to the product_market relationship
'amount_requested' => $request->product_amount, //table
'amount_left' => $request->product_amount,
'amount_sold' => '0'
]);
}
该错误指出属性[amount_requested]在此集合示例上不存在。但它确实存在
如果我把“DD($repeated_entry);“在第一个if之前,为了看到集合我得到了这个
enter image description here
我可以看到“amount_requested”就在那里,它确实在集合中,它可能是完全明显的,我只是需要一些睡眠,但我想寻求一些帮助,(不要介意代码的质量,我是一个noobie试图学习)
我尝试了其他方法来获取集合中的值,但它需要保持集合以与其余代码一起工作,我正准备睡觉,也许我在早上理解了一些东西,我看不到rn,抱歉问了这个愚蠢的问题
2条答案
按热度按时间zzlelutf1#
$repeated_entry
是一个集合示例。我假设你需要第一个条目。你需要在get
之后使用first
。然后,如果存在匹配条目,则更改条件:
bihw5rsg2#
变更:
至
您需要添加
->first()
以实际获取对象,稍微清除了where条件。