Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

increment single column laravel

Product::increment('count' , 5); // count + 5

Product::decrement('count', 5); // count - 5

---------------Or-----------------------
  
Product::where('product_id', $product->id)
    ->update([
      'count'=> DB::raw('count+1'), 
      'last_count_increased_at' => Carbon::now()
    ]);
 
PREVIOUS NEXT
Tagged: #increment #single #column #laravel
ADD COMMENT
Topic
Name
6+5 =