data = $data; $this->notificationEmail = $notificationEmail; } /** * Build the message. * * @return $this */ public function build() { $company = $this->data['company']['name']; return $this->from($this->notificationEmail) ->subject("Invoice from $company") ->markdown('emails.send.invoice', ['data', $this->data]); } }