user = $user; $this->otp = $otp; $this->subject = trans('email.email_subject_label.otp_email_verification'); } /** * @return UserConfirmEmail */ public function build() { return $this->view('frontend.mail.account-activation') ->with([ 'user' => $this->user, 'otp' => $this->otp, ]); } }