为了账号安全,请及时绑定邮箱和手机立即绑定

如何在 Laravel 5.8 中使用 Eloquent 进行查询?

如何在 Laravel 5.8 中使用 Eloquent 进行查询?

PHP
收到一只叮咚 2021-10-15 17:08:28
我想做的就是相当于这个使用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


查看完整回答
反对 回复 2021-10-15
  • 1 回答
  • 0 关注
  • 159 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信