Answers for "blade php increment by 1 table"

PHP
1

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()
    ]);
Posted by: Guest on September-27-2020
0

increment laravel

$customer = Customer::find($customer_id);
$loyalty_points = $customer->loyalty_points + 1;
$customer->update(['loyalty_points' => $loyalty_points]);

or

Customer::find($customer_id)->increment('loyalty_points');
Posted by: Guest on July-03-2021

Code answers related to "blade php increment by 1 table"

Browse Popular Code Answers by Language