拉拉维尔更新查询
我正在尝试根据电子邮件更新用户,没有ID,是否有一种方法可以在没有原始查询的情况下执行此操作。
当前错误
{“error”:{“type”:“ErrorException”,“message”:“Creating default object from empty value”,“file”:“C:\wamp\www\celeb-jim\app\controllers\SignupController.php”,“line”:189}}
我的代码
public function changeAccountStatus ($plan, $userEmail ){ $UpdateDetails = User::where('email', '=', $userEmail)->first(); $UpdateDetails->member_type = $plan; $UpdateDetails->save(); }