仅使用令牌重置密码的最佳方法是什么?
现在它使用令牌和电子邮件,我想通过检查提醒表中的令牌来获取电子邮件。
谢谢!
更新 解决了这个问题:
$email = DB::table(Config::get('auth.reminder.table'))->where('token', $token)->pluck('email');
仅使用令牌重置密码的最佳方法是什么?
现在它使用令牌和电子邮件,我想通过检查提醒表中的令牌来获取电子邮件。
谢谢!
更新 解决了这个问题:
$email = DB::table(Config::get('auth.reminder.table'))->where('token', $token)->pluck('email');
这是我进行密码重置的方法。
不确定这是否正确/错误,但它对我有用。