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