Abrari Studio.

Official Tax Invoice

Billed To:
{{ $order->user->name }}
{{ nl2br($order->address->getFullAddressAttribute()) }}
Order Details:
No: #{{ $order->order_number }}
Date: {{ $order->created_at->format('d M Y') }}
@foreach($order->items as $item) @endforeach
Product Qty Price Total
{{ $item->product->name }} {{ $item->quantity }} ₹{{ number_format($item->price, 2) }} ₹{{ number_format($item->price * $item->quantity, 2) }}

Subtotal: ₹{{ number_format($order->subtotal, 2) }}

Shipping: {{ $order->shipping_charges == 0 ? 'Complimentary' : '₹'.number_format($order->shipping_charges, 2) }}

Discount: ₹{{ number_format($order->discount_amount, 2) }}

Total: ₹{{ number_format($order->total, 2) }}