I have an admin page on my site and I want an option to be able to manually resend an email verification, there are two purposes for this:
Does the user model have a method to do this?
If your User
model implements the MustVerifyEmail
interface, yes, you can manually send the notification using:
$user->sendEmailVerificationNotification();