“Ларавел красноречивый приращение” Ответ

Ларавел красноречивый приращение

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

Обновление красноречиво с увеличением 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

Приращение 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

Ответы похожие на “Ларавел красноречивый приращение”

Вопросы похожие на “Ларавел красноречивый приращение”

Больше похожих ответов на “Ларавел красноречивый приращение” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования