“Ларавел Сквапь” Ответ

Ларавел Сквапь

DB::table('users')->increment('votes');
 
DB::table('users')->increment('votes', 5);
 
DB::table('users')->decrement('votes');
 
DB::table('users')->decrement('votes', 5);
Shadow

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

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

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