attempt = $attempt; } public function toMail() { return (new MailMessage) ->subject('Email Verification Required') ->line('Please click the button below to verify your email address.') ->action('Verify Email Address', $this->verificationUrl() ) ->line('If you did not create an account, no further action is required.'); } private function verificationUrl(){ return $this->attempt->token; } }