data = $data; } /** * Build the message. * * @return $this */ public function build() { $email = $this->data['user']['email']; $name = $this->data['user']['name']; return $this->from($email, $name) ->markdown('emails.viewed.invoice', ['data', $this->data]); } }