{{ config('app.name') }}

Invoice: {{ @$order->reference }}
Created: {{ $order->placed_at }}

Billing

{{ $order->billingAddress->fullName }}
@if($order->billingAddress->company_name) {{ $order->billingAddress->company_name }}
@endif {{ $order->billingAddress->line_one }} @if($order->billingAddress->line_two)
{{ $order->billingAddress->line_two }}
@endif @if($order->billingAddress->line_three)
{{ $order->billingAddress->line_three }}
@endif {{ $order->billingAddress->city }}
{{ $order->billingAddress->state }}
{{ $order->billingAddress->postcode }}
{{ $order->billingAddress->country->name }}
@if($order->customer?->vat_no)

VAT No.: {{ $order->customer?->vat_no }}

@endif

Shipping

{{ $order->shippingAddress->fullName }}
@if($order->shippingAddress->company_name) {{ $order->shippingAddress->company_name }}
@endif {{ $order->shippingAddress->line_one }} @if($order->shippingAddress->line_two)
{{ $order->shippingAddress->line_two }}
@endif @if($order->shippingAddress->line_three)
{{ $order->shippingAddress->line_three }}
@endif {{ $order->shippingAddress->city }}
{{ $order->shippingAddress->state }}
{{ $order->shippingAddress->postcode }}
{{ $order->shippingAddress->country->name }}
@foreach($order->physicalLines as $line) @endforeach @foreach($order->shippingLines as $line) @endforeach
Product SKU Qty Unit Price Discount Tax Rate Tax Amount Line Total
{{ $line->description }}
{{ $line->option }}
{{ $line->identifier }} {{ $line->quantity }} {{ $line->unit_price->formatted }} {{ $line->discount_total->formatted }} {{ $line->tax_breakdown->sum('percentage') }}% {{ $line->tax_total->formatted }} {{ $line->sub_total->formatted }}
Sub Total {{ $order->sub_total->formatted }}
Shipping
{{ strip_tags($line->description) }}
{{ $line->sub_total->formatted }}
Tax {{ $order->tax_total->formatted }}
Total {{ $order->total->formatted }}
@if($order->notes)

Order Notes
{{ $order->notes }}


@endif