does laravel have short cut for $i++; i want to update my database value went seomething happend. on php i could just use sql like
UPDATE goods SET qty++ WHERE id = '4'
here is my controller
code
public function store(Request $request)
{
$g = new goods();
$g->qty = ++;
$g->save();
}