data = $data; } public function build() { return $this->view('emails.code') // 设置邮件的视图 ->subject('验证邮件') // 设置邮件的主题 ->with(['data' => $this->data]); // 传递给视图的数据 } }