Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 Laravel 5.7 的新电子邮件验证功能。假设我在管理面板中以管理员身份登录,我想:
我如何使用新的 Laravel 5.7 电子邮件验证功能来实现这一点?
内置的验证脚手架提供了执行此操作的通知。您只需要确保将用户verified_at设置为 null 然后
verified_at
use Iluminate\Auth\Notifications\VerifyEmail; $user->notify(new VerifyEmail);
这将重新发送一封带有签名 URL 的新电子邮件。