@if($settings->site_logo)
{{ $settings->site_name ?? 'Your Store' }}@endif @if($settings->store_address){{ $settings->store_address }} {{ $settings->store_city }}{{ $settings->store_state ? ', ' . $settings->store_state : '' }}{{ $settings->store_pincode ? ' - ' . $settings->store_pincode : '' }} @endif @if($settings->contact_phone)Phone: {{ $settings->contact_phone }} @endif @if($settings->contact_email)Email: {{ $settings->contact_email }} @endif @if($settings->store_gstin)GSTIN: {{ $settings->store_gstin }} @endif |
INVOICE{{ $order->invoice_no ?? $order->order_no }}
{{ $order->created_at->setTimezone('Asia/Kolkata')->format('d M Y') }}
|
Bill To{{ $order->customer_name }} @if($order->billing_address){{ $order->billing_address }} {{ $order->billing_city }}{{ $order->billing_state ? ', ' . $order->billing_state : '' }} {{ $order->billing_pincode ? '- ' . $order->billing_pincode : '' }} @else{{ $order->shipping_address }} {{ $order->shipping_city }}{{ $order->shipping_state ? ', ' . $order->shipping_state : '' }} {{ $order->shipping_pincode ? '- ' . $order->shipping_pincode : '' }} @endifPhone: {{ $order->customer_phone }} @if($order->customer_email)Email: {{ $order->customer_email }} @endif |
Ship To{{ $order->customer_name }} {{ $order->shipping_address }} {{ $order->shipping_city }}{{ $order->shipping_state ? ', ' . $order->shipping_state : '' }} {{ $order->shipping_pincode ? '- ' . $order->shipping_pincode : '' }} Phone: {{ $order->customer_phone }} |
| Order Date {{ $order->created_at->setTimezone('Asia/Kolkata')->format('d M Y, h:i A') }} | Order No {{ $order->order_no }} | Payment Method {{ $order->payment_method == 'cod' ? 'Cash on Delivery' : 'Online Payment' }} | Status {{ strtoupper($order->status) }} |
| # | Product | HSN | Qty | Rate | Amount |
|---|---|---|---|---|---|
| {{ $index + 1 }} |
{{ $item->product_name }}
@if($item->variation_name)
{{ $item->variation_name }}
@endif
@if($item->sku)
SKU: {{ $item->sku }}
@endif
|
{{ $item->hsn_code ?? '-' }} | {{ (int)$item->quantity }} | Rs. {{ number_format($item->unit_price, 2) }} | Rs. {{ number_format($item->total_price, 2) }} |
|
@if($order->notes)
Notes:
@endif
{{ $order->notes }} |
|