title = $title; $this->body = $body; } /** * 构建消息。 * * @return $this */ public function build() { return $this->view('emails.information')->subject($this->title)->with(['body' => $this->body]); } }