1$affected = DB::table('users')
2 ->where('id', 1)
3 ->update(['votes' => 1]);
1 DB::table('user')->where('email', $userEmail)->update(array('member_type' => $plan));
2
1$update = \DB::table('student') ->where('id', $data['id']) ->limit(1) ->update( [ 'name' => $data['name'], 'address' => $data['address'], 'email' => $data['email'], 'contactno' => $data['contactno'] ]);
2