Order Ref: {{ strtoupper($invoice->order_id) }}
Order Date/Time: {{ date('j.n.Y - H:i:s', strtotime($invoice->created_at)) }}
{{ $invoice->user?->fullName() }}
{{ $invoice->user->email }}
{{ $invoice->user->phone }}
{{ $invoice->user->address }}
@if($invoice->user->postal || $invoice->user->state || $invoice->user->city || $invoice->user->country){{ $invoice->user->postal ? $invoice->user->postal . ', ' : '' }} {{ $invoice->user->state ? $invoice->user->state . ', ' : '' }} {{ $invoice->user->city ? $invoice->user->city . ', ' : '' }} {{ $invoice->user->country ?? '' }}
@else{{__('Not Available')}}
@endif{{ $setting->invoice_address }}, {{ $setting->invoice_city }}, {{ $setting->invoice_state }}
{{ $setting->invoice_country }}, {{ $setting->invoice_postal }}
{{ $setting->invoice_website }}
{{ $setting->invoice_phone }}
# | Product | Quantity | Unit Price | Total |
---|---|---|---|---|
1 | {{ @$invoice->plan->name ?? 'Archived Plan' }} | 1 | {{ currency()->symbol }}{{ $invoice->price }} | {{ currency()->symbol }}{{ $invoice->price }} |
Subtotal | {{ currency()->symbol }}{{ $invoice->price }} |
Vat Rate | {{ $invoice->tax_rate }}% |
Vat Due | {{ isset($invoice->tax_rate) && $invoice->tax_rate > 0 ? currency()->symbol . $invoice->tax_value : '-' }} |
Total Due | {{ currency()->symbol }}{{ $invoice->price }} |