“Laravel elokwentny przyrost” Kod odpowiedzi

Laravel elokwentny przyrost

Customer::find($customer_id)->increment('loyalty_points');
  
  
// increment by 20 
  Customer::find($customer_id)->increment('loyalty_points',20);
Abdullah Mohamed

Zaktualizuj elokwentne o przyrost Laravel

Product::where('id',$id)
->increment('quantity', 4, ['updated_at' => Carbon::now()]);
or
// Increment by 1
Product::find($product_id)->increment('quantity');
//Increment by entered number "2"
Product::find($product_id)->increment('quantity', 2);
or
// Increment by 1
DB::table('products')->increment('quantity');
//Increment by entered number "2"
DB::table('products')->increment('quantity', 2);
  
Snippets

Przyrost 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');
Mohamad

Odpowiedzi podobne do “Laravel elokwentny przyrost”

Pytania podobne do “Laravel elokwentny przyrost”

Więcej pokrewnych odpowiedzi na “Laravel elokwentny przyrost” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu