| Invoice Number: |
{{ $invoice->invoice_number }} |
Date: |
{{ $invoice->created_at->format('d M Y') }} |
| Customer: |
{{ $customer->first_name . ' ' . $customer->last_name ?? 'N/A' }} |
E-Mail: |
{{ $customer->email ?? 'N/A' }} |
| Plan: |
{{ $plan->plan_name ?? 'N/A' }} |
Status: |
{{ ucfirst($invoice->status) }} |
| Currency: |
{{ $invoice->currency }} |
Transaction ID: |
{{ $transaction->gateway_order_id ?? '-' }} |
| Description |
Amount ({{ $invoice->currency }}) |
| {{ $plan->plan_name ?? 'Plan Payment' }} |
{{ number_format($invoice->amount, 2) }} |
Total: {{ number_format($invoice->amount, 2) }} {{ $invoice->currency }}