douyin8623 2019-06-27 07:01
浏览 329
已采纳

使用Laravel Eloquent直接递增或递减列更新

I have a query where in I use Eloquent for finding the ID but what I need is to directly subtract inside the eloquent query ? same as in Query Builder,

Documentation code

$flight = App\Flight::find(1);

$flight->name = 'New Flight Name';

$flight->save();

What I need is to directly to substract

$flight = App\Flight::find(1);

$flight->value =- 1;

$flight->save();
  • 写回答

2条回答 默认 最新

  • doumaoao0182 2019-06-27 07:04
    关注

    use laravel increment() or decrement() method see

    App\Flight::find(1)->decrement('value',1);
    

    second way u can achieve by update query

     App\Flight::where('id', 1)->update(['value' => \DB::raw('value - 1')]);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?