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();