Laravel观察者更新事件未触发

时间:2019-01-30 10:25:33

标签: laravel-5 observers product-quantity

我在更新功能中使用了它:

 $qty = $request->input('checked_out_qty');
    DB::table('consumables')->decrement('remaining_qty',$qty );

我不断收到此错误:

“ SQLSTATE [23000]:违反完整性约束:1452无法添加或更新子行:外键约束失败(fixedconsumables_histories,CONSTRAINT 251075_5c35eb169cb40外键({ {1}})在删除级联上的引用checked_out_qty_idconsumables)(SQL:插入idconsumables_historiesconsumables_idchecked_out_qty_idchecked_out_by_idstatus_idlocation_idassigned_to_idupdated_at)值(1368,6,1,1,1,1,2019-02-03 08 :08:34,2019-02-03 08:08:34))

但是当您第二次刷新时,递减仍然会发生。我可能在做错什么?

0 个答案:

没有答案