otp = $otp; $this->employerName = $employerName; } /** * Get the message envelope. */ public function envelope(): Envelope { return new Envelope( subject: 'Password Reset Verification Code: ' . $this->otp, ); } /** * Get the message content definition. */ public function content(): Content { return new Content( view: 'emails.employer-reset-otp', ); } }