我在更新功能中使用了它:
$qty = $request->input('checked_out_qty');
DB::table('consumables')->decrement('remaining_qty',$qty );
我不断收到此错误:
“ SQLSTATE [23000]:违反完整性约束:1452无法添加或更新子行:外键约束失败(fixed
。consumables_histories
,CONSTRAINT 251075_5c35eb169cb40
外键({ {1}})在删除级联上的引用checked_out_qty_id
(consumables
)(SQL:插入id
(consumables_histories
,consumables_id
,checked_out_qty_id
,checked_out_by_id
,status_id
,location_id
,assigned_to_id
,updated_at
)值(1368,6,1,1,1,1,2019-02-03 08 :08:34,2019-02-03 08:08:34))
但是当您第二次刷新时,递减仍然会发生。我可能在做错什么?