data = $data; } /** * Build the message. * * @return $this */ public function build() { EmailLog::create([ 'from' => $this->data['from'], 'to' => $this->data['to'], 'subject' => $this->data['subject'], 'body' => $this->data['body'], 'mailable_type' => Estimate::class, 'mailable_id' => $this->data['estimate']['id'] ]); return $this->from($this->data['from'], config('mail.from.name')) ->subject($this->data['subject']) ->markdown('emails.send.estimate', ['data', $this->data]); } }