restaurantuser = $restaurantuser; $this->restaurantName = $restaurantName; } /** * Build the message. * * @return $this */ public function build() { return $this->view('Admin.pages.mail.account_register'); } /** * Get the message envelope. * * @return \Illuminate\Mail\Mailables\Envelope */ public function envelope(): Envelope { return new Envelope( subject: 'New Account Registration Details', ); } /** * Get the attachments for the message. * * @return array */ public function attachments(): array { return []; } }