user = $user; $this->code = $code; $this->expiresInMinutes = config('authentication.two_factor.sms.code_lifetime', 10); } /** * Build the message. * * @return $this */ public function build() { return $this->subject('Your Verification Code') ->view('emails.verification-code'); } }