data = $data; $this->emaildeliver = $emaildeliver; $this->registration = $registration; } /** * Build the message. * * @return $this */ public function build() { $data = $this->data; $emaildeliver = $this->emaildeliver; $registration = $this->registration; return $this->from($this->data['email'], $this->data['name'])->view('mail.registrationenquiry',compact('data','emaildeliver','registration')); } }