comment = $comment; } /** * Build the message. * * @return $this */ public function build() { return $this->from(core()->getSenderEmailDetails()['email'], core()->getSenderEmailDetails()['name']) ->to($this->comment->order->customer_email, $this->comment->order->customer_full_name) ->subject(trans('shop::app.mail.order.comment.subject')) ->view('shop::emails.sales.new-order-comment'); } }