tableData = $tableData ?? []; } /** * Get the message envelope. */ public function envelope(): Envelope { return new Envelope( subject: 'Production Mail', ); } /** * Get the message content definition. */ public function content(): Content { return new Content( view: 'mail.production_report', with: [ 'company' => "CRI Digital Manufacturing Solutions", 'greeting' => "Dear Sir/Madam,

Kindly find the attached production report status details for the 'Target Quantity' and 'Production Quantity' count,", 'tableData' => $this->tableData, 'wishes' => "Thanks & Regards,
CRI Digital Manufacturing Solutions" ], ); } /** * Get the attachments for the message. * * @return array */ public function attachments(): array { return []; } }