addMinutes((int) config('auth.verification.expire', 60)), [ 'id' => $notifiable->getKey(), 'hash' => sha1($notifiable->getEmailForVerification()), ], ); } protected function buildMailMessage($url): MailMessage { return (new MailMessage) ->subject('Verify your Verde email') ->greeting('Hello,') ->line('Tap the button below to confirm your Verde account email address.') ->action('Verify email', $url) ->line('If you did not create an account, no further action is required.'); } }