Your Company Pvt Ltd

123 Business Park, Chennai, Tamil Nadu, 600001
GSTIN: 33AAAAA0000A1Z5 | sales@yourcompany.com

TAX INVOICE

Invoice #: {{ $invoiceNumber }}
Order #: {{ $order->order_number }}
Date: {{ $order->created_at->format('d-m-Y') }}
Bill To:
{{ $order->user->company_name }}
{{ $order->billing_address }}
@if ($order->user->gst_number) GSTIN: {{ $order->user->gst_number }} @endif
Ship To:
{{ $order->shipping_address }}
@foreach ($order->items as $item) @endforeach
ProductSKUQtyUnit PriceTax %Amount
{{ $item->product_name }} {{ $item->sku }} {{ $item->quantity }} Rs. {{ number_format($item->unit_price, 2) }} {{ number_format($item->tax_percent, 1) }}% Rs. {{ number_format($item->subtotal, 2) }}
Subtotal:Rs. {{ number_format($order->subtotal, 2) }}
Discount:Rs. {{ number_format($order->discount_amount, 2) }}
GST:Rs. {{ number_format($order->tax_amount, 2) }}
Grand Total:Rs. {{ number_format($order->total_amount, 2) }}