我想要做的是更新或插入表中的行。在我的情況下,更新看起來像這樣:update或創建laravel中的增量
\DB::table('inventories')->where('product_code',$product_code)->increment('stock_current_quantity',$quantity);
我不想使用if語句。我真正想要的是將增量整合到以下語句中,以便更新爲上述語句。
\App\Inventory::updateOrCreate(['product_code' => $product_code], ['stock_current_quantity'=>$quantity]);
在此先感謝!
爲什麼你不使用雄辯?雄辯模型非常簡單。 –