Iterative Billing
| Invoice Number: | {{ $invoice->invoice_number }} | Status: | {{ strtoupper($invoice->status) }} |
| Issue Date: | {{ $invoice->created_at->format('M d, Y') }} | Due Date: | {{ $invoice->due_date ? $invoice->due_date->format('M d, Y') : 'N/A' }} |
| Paid Date: | {{ $invoice->paid_date->format('M d, Y') }} | Payment Method: | {{ $invoice->payment_method ? strtoupper($invoice->payment_method) : 'N/A' }} |
{{ $tenant->company_name ?? $tenant->name }}
{{ $tenant->email }}
{{ $tenant->phone }}
{{ $tenant->address }}
| Description | Plan | Period | Amount |
|---|---|---|---|
| {{ $invoice->description ?? 'Subscription Fee' }} | {{ $invoice->subscription->plan->name ?? 'N/A' }} | @if($invoice->subscription) {{ $invoice->subscription->starts_at ? \Carbon\Carbon::parse($invoice->subscription->starts_at)->format('M d, Y') : '' }} - {{ $invoice->subscription->ends_at ? \Carbon\Carbon::parse($invoice->subscription->ends_at)->format('M d, Y') : '' }} @else N/A @endif | {{ $invoice->currency }} {{ number_format($invoice->subtotal, 2) }} |
| Subtotal: | {{ $invoice->currency }} {{ number_format($invoice->subtotal, 2) }} |
| Discount: | -{{ $invoice->currency }} {{ number_format($invoice->discount, 2) }} |
| Tax: | {{ $invoice->currency }} {{ number_format($invoice->tax, 2) }} |
| Total: | {{ $invoice->currency }} {{ number_format($invoice->total, 2) }} |
{{ $invoice->notes }}