@php $settings = \App\Models\BusinessSetting::current(); @endphp

{{ $settings->business_name }}

@if ($settings->address)

{{ $settings->address }}

@endif @if ($settings->pan_vat_number)

PAN/VAT: {{ $settings->pan_vat_number }}

@endif

TAX INVOICE

Order #{{ $order->order_number }}
{{ $order->created_at->format('d M Y, h:i A') }}


@foreach ($order->items as $item) @endforeach
{{ $item->quantity }} × {{ $item->displayName() }} {{ number_format($item->lineTotal(), 2) }}

@if ($order->discount > 0) @endif
Subtotal{{ number_format($order->subtotal, 2) }}
VAT ({{ rtrim(rtrim(number_format($settings->vat_rate,2),'0'),'.') }}%){{ number_format($order->tax, 2) }}
Discount-{{ number_format($order->discount, 2) }}
Total{{ number_format($order->total, 2) }}

Thank you, come again!