xxxxxxxxxx
use App\Models\User;
$User_Update = User::where("id", '2')->update(["member_type" => $plan]);
xxxxxxxxxx
DB::table('user')->where('email', $userEmail)->update(array('member_type' => $plan));
xxxxxxxxxx
$affected = DB::table('users')
->where('id', 1)
->update(['votes' => 1]);
xxxxxxxxxx
$update = \DB::table('student') ->where('id', $data['id']) ->limit(1) ->update( [ 'name' => $data['name'], 'address' => $data['address'], 'email' => $data['email'], 'contactno' => $data['contactno'] ]);
xxxxxxxxxx
DB::table('post')
->where('id', 3)
->update(['title' => "Updated Title"]);