fees = $fees; } /** * Get the message envelope. */ public function envelope(): Envelope { $tenantName = tenant('name') ?? '系統'; return new Envelope( subject: "【{$tenantName}】公共事業費繳費/逾期通知", ); } /** * Get the message content definition. */ public function content(): Content { return new Content( markdown: 'emails.payment-reminder', with: [ 'fees' => $this->fees, ], ); } /** * Get the attachments for the message. * * @return array */ public function attachments(): array { return []; } }