如何在创建新用户时使用 luman 验证数据库中是否存在电子邮件?。
我的注册控制器代码
$borrower = borrowerRegistration::create($request->all());
$last_borrower_id=DB::getPdo()->lastInsertId();
$store_borrower_array=array();
$store_borrower_array["borrower_id"]=$last_borrower_id;
$borrower_result = array('status' => 'true','message' =>'The First step borrower registration successfully.','content'=>array('registration'=>$store_borrower_array));
return json_encode($borrower_result);
请提出宝贵的建议。
答案 0 :(得分:3)
您可以尝试这种方式。这里用户是你的模型(我假设)
if (User::where('email', '=', Input::get('email'))->exists()) {
// user found
}
将输入::获取('电子邮件')替换为您收到并存储的电子邮件地址。