costUnitId), ); } /** * Get the message content definition. */ public function content(): Content { return new Content( view: 'emails.admin.cost_unit_invalid_billing_deadline', with: [ 'costUnitId' => $this->costUnitId, 'costUnitName' => $this->costUnitName, 'invalidBillingDeadline' => $this->invalidBillingDeadline, ], ); } /** * Get the attachments for the message. * * @return array */ public function attachments(): array { return []; } }