【发布时间】:2019-02-27 10:12:11
【问题描述】:
laravel 5.7 附带的验证电子邮件。我需要如何以及在哪里更改它?我已经在网上搜索过,但是因为它是5.7中的全新功能,所以我找不到答案。你能帮我吗?提前致谢。
基本上该类在 Illuminate\Auth\Notifications 下
我想重写其中一种方法:
class VerifyEmail extends Notification
{
// i wish i could override this method
protected function verificationUrl($notifiable)
{
return URL::temporarySignedRoute('verification.verify', Carbon::now()->addMinutes(60), ['id' => $notifiable->getKey()]);
}
}
【问题讨论】:
标签: laravel email-verification laravel-5.7