{{-- HEADER --}}
INVOICE
{{-- CONTENT --}}
Tappygifts
Address Line 1
City, Country
Phone: +91 XXXXXXXX
Invoice #: {{ $order->order_number }}
Date: {{ $order->created_at->format('d M Y') }}
{{-- BILL TO --}}
Bill To:
{{ $order->user->name }}
{{ $order->user->email }}
{{ $order->shipping_address }}
{{-- ITEMS --}} @foreach($order->items as $i => $item) @endforeach
# Product Qty Price Tax Amount
{{ $i + 1 }} {{ $item->product->name }} {{ $item->qty }} ₹{{ number_format($item->price, 2) }} ₹{{ number_format($item->tax, 2) }} ₹{{ number_format($item->total, 2) }}
{{-- SUMMARY --}}
Subtotal: ₹{{ number_format($order->subtotal,2) }}
Discount: -₹{{ number_format($order->discount,2) }}
Tax: ₹{{ number_format($order->tax,2) }}
TOTAL : ₹{{ number_format($order->total,2) }}
{{-- NOTES --}}
Notes:
Thank you for shopping with Tappygifts 💜