name = $name; } /** * Build the message. * * @return $this */ public function build() { return $this->view('emails.firstmail') ->subject('Welcome to Our Platform') ->with([ 'name' => $this->name, ]); } }