我有这个问题
DB::table('product_options')
->where('product_id', $id)
->where('size', $selected_size)
->update(array('stock' => WHAT TO PUT HERE));
Run Code Online (Sandbox Code Playgroud)
在更新部分,我已经提出了什么更新,我应该把这个数字减少1?
使用该decrement方法.http://laravel.com/docs/4.2/queries#updates
DB::table('product_options')
->where('product_id', $id)
->where('size', $selected_size)
->decrement('stock');
Run Code Online (Sandbox Code Playgroud)