invoice->invoice_number} - Payment Requested", ); } public function content(): Content { return new Content( view: 'emails.invoice', with: [ 'invoice' => $this->invoice, 'invoiceUrl' => route('invoices.show', $this->invoice), ], ); } }