本文整理匯總了PHP中Reminder::exists方法的典型用法代碼示例。如果您正苦於以下問題:PHP Reminder::exists方法的具體用法?PHP Reminder::exists怎麽用?PHP Reminder::exists使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Reminder
的用法示例。
在下文中一共展示了Reminder::exists方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: remind
/**
* Handle posting of the form for the forgot password.
*
* @return \Illuminate\Http\RedirectResponse
*/
public function remind()
{
$email = Input::get('email');
if ($user = Sentinel::findByCredentials(compact('email'))) {
$reminder = Reminder::exists($user) ?: Reminder::create($user);
$code = $reminder->code;
$sent = Mail::send('sentinel.emails.reminder', compact('user', 'code'), function ($m) use($user) {
$m->to($user->email)->subject('Reset your account password.');
});
}
return Redirect::route('user.remember')->withSuccess('An email was sent with instructions on how to reset your password.');
}
示例2: postForgot
public function postForgot(Request $request)
{
$input = $request->all();
$credentials = ['email' => $request->email];
$rules = ['password' => 'required|email|exists:users,email'];
$validator = Validator::make($input, $rules);
if ($validator->fails()) {
return back()->withInput()->withErrors($validator);
}
if ($user = Sentinel::findByCredentials($credentials)) {
$reminder = Reminder::exists($user) ?: Reminder::create($user);
$code = $reminder->code;
$sent = Mail::send('sentinel.emails.reminder', compact('user', 'code'), function ($m) use($user) {
$m->to($user->email)->subject('Reset your account password.');
});
return redirect()->route('wait');
} else {
return back()->withInput()->with('fail', trans('validation.no_user_that_email'));
}
}
示例3: InitForgotPassword
/**
* Begin the password reset process
*
* @param AccountForgotPassword $request
*
* @return $this
*/
public function InitForgotPassword(AccountForgotPassword $request)
{
try {
$credentials = ['email' => \Input::get('email')];
$user = \Sentinel::getUserRepository()->findByCredentials($credentials);
\Reminder::create($user);
$reminder = \Reminder::exists($user);
\Mail::queue('emails.account.resetpassword', ['username' => \Input::get('email'), 'user_id' => $user->getUserId(), 'reset_code' => $reminder['code'], 'reset_link' => env('URL') . '/auth/forgotpassword/set?' . http_build_query(array('ResetCode' => $reminder['code'], 'UserId' => $user->getUserId()))], function ($message) {
$message->from('no-reply@modestmusic.ml', 'Modest Music | Account Services');
$message->to(\Input::get('email'));
});
return redirect('auth/login')->withErrors(array('login' => 'We have sent you your reset link. Please check your Spam Email.'));
} catch (\Exception $e) {
return redirect('auth/forgotpassword')->withErrors(array('password_reset' => 'User Not found in our database!'));
}
}