otp = $otp; $this->email = $email; $this->subject = __('portal.mail_subject'); } public function build() { return $this->view('emails.auth')->with([ 'otp' => $this->otp, 'url' => route('portal.login.otp.form', ['email' => $this->email, 'otp' => $this->otp]), 'button' => __('portal.login_button'), 'salutation' => __('portal.mail_hello'), 'copy1line' => __('portal.mail_otp'), 'copy2line' => __('portal.mail_otp_valid'), 'copy3line' => __('portal.mail_otp_not_requested'), 'greetings' => __('portal.mail_greetings'), 'sender' => __('portal.mail_sender'), ]); } }