user = $user; $this->verificationUrl = $verificationUrl; } /** * Build the message. */ public function build() { return $this->subject('Verify Your Email Address') ->view('mail.verify') ->with([ 'user' => $this->user, 'verificationUrl' => $this->verificationUrl, ]); } }