data = $data; } /** * Get the message envelope. */ // public function envelope(): Envelope // { // return new Envelope( // subject: 'Rest User Approval', // ); // } // /** // * Get the message content definition. // */ // public function content(): Content // { // return new Content( // view: 'view.name', // ); // } public function build() { $data = $this->data; // dd($data); return $this->subject('Rest User Approval') ->view('Admin.pages.mail.rest_user_approval', ["content" => $data]); } /** * Get the attachments for the message. * * @return array */ public function attachments(): array { return []; } }