Company Logo
Tax Invoice
Seller:
{{ $pickup->organisation_name }}
{{ $pickup->address }}
@if ($pickup->address_2 != '') {{ $pickup->address_2 }}
@endif Pincode: {{ $pickup->pin_code }}
City: {{ $pickup->city }}
State: {{ $pickup->state }}
Country: {{ $pickup->country }}
Phone: {{ $pickup->phone }}
Email: {{ $pickup->email }}
GSTIN: {{ $pickup->gst_number }}
Buyer:
{{ $order->user->name }}
{{ $order->shippingAddress->line1 }}
@if ($order->shippingAddress->line2 != '') {{ $order->shippingAddress->line2 }}
@endif Pincode: {{ $order->shippingAddress->pincode }}
City: {{ $order->shippingAddress->city }}
District: {{ $order->shippingAddress->district }}
State: {{ $order->shippingAddress->state }}
Country: {{ $order->shippingAddress->country }}
Phone: {{ $order->user->mobile }}
Email: {{ $order->user->email }}
@if ($order->gst_number != '') GSTIN: {{ $order->gst_number }}
@endif @if ($order->org_name != '') Company: {{ $order->org_name }}
@endif
Invoice No: {{ $order->invoice_id }}
Invoice Date: {{ \Carbon\Carbon::parse($order->created_at)->format('d M Y, h:i A') }}
Order ID: {{ $order->payment_order_id }}
@if ($order->transaction_id != '') Transaction ID: {{ $order->transaction_id }}
@endif
@if (in_array($order->under_process, [2, 3, 4]))
Note: This order was cancelled @if ($order->under_process == 2) by user. @elseif($order->under_process == 3) by admin. @elseif($order->under_process == 4) and refunded successfully @if ($order->cancelled_by == 'user') (cancelled by user). @elseif($order->cancelled_by == 'admin') (cancelled by admin). @else (cancellation source unknown) . @endif @endif
@endif
@php $i = 1; $subtottal = 0; $gsttotal = 0; $brancingcost = 0; @endphp @forelse ($order->checkoutProducts as $items) @php $amount = $items->quantity * $items->sales_price; $gst = $items->cgst + $items->sgst; $rate = $amount / (1 + $gst / 100); $main_amount = $rate *$items->quantity; $gstamunt = ($rate * $gst) / 100; $subtottal = $subtottal + $rate; $gstamunt = ($rate * $gst) / 100; $totalamt = $rate + $gstamunt; $gsttotal += $gstamunt; $ogbrandcost = $items->branding_cost * $items->quantity; $brancingcost = $brancingcost + $ogbrandcost; @endphp @empty @endforelse
# Description HSN/SAC Qty Rate (₹) Amount (₹) GST % GST Amt (₹) Total (₹)
{{ $i++ }} {{ $items->product_name }} {{ $items->hsn_code }} {{ $items->quantity }} {{ amountFormat($rate) }} {{ amountFormat($main_amount) }} {{ $gst }}% {{ amountFormat($gstamunt) }} {{ amountFormat($totalamt) }}
No Data Found
Subtotal ₹{{ amountFormat($subtottal) }}
Total GST ₹{{ amountFormat($gsttotal) }}
Shipping ₹{{ amountFormat($order->shipping_cost) }}
Branding Cost ₹{{ amountFormat($order->branding_cost) }}
Coin Discount - ₹{{ amountFormat($order->coin_cost * $order->coins) }}
Grand Total ₹{{ amountFormat($subtottal + $gsttotal + $order->shipping_cost + $order->branding_cost - $order->coin_cost * $order->coins) }}
Go to Orders