我想做的就是相当于这个使用Eloquent的咨询,但是我不知道怎么做。update promociones set veces_cajeadas=veces_cajeadas + 1 where id = 7What I need is that when a specific promotion id is chosen, add 1 to a field in the table. 该表的模型是促销。
1 回答
慕容森
TA贡献1853条经验 获得超18个赞
在 laravel eloquent 甚至查询生成器中,有一种方便的方法来减少和增加模型的值
$promotions = Promotions::find($id);
$promotions->increment('veces_cajeadas')
有关这些方法的更多信息,您可以阅读laravel doc
- 1 回答
- 0 关注
- 159 浏览
添加回答
举报
0/150
提交
取消