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