Answer the question
In order to leave comments, you need to log in
Increase laravel mysql field value?
DB::table('table')
->where('id', $id)
->update([
'count' => \DB::raw('count + ?'),
'updated_at' => now()
]);
'count' => \DB::raw('count + ?', array($count)),
Answer the question
In order to leave comments, you need to log in
https://laravel.com/docs/5.8/queries#increment-and...
in general, everything that can be mixed together.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question