Invoice #: {{ $order->order_number }}
Date: {{ \Carbon\Carbon::parse($order->created_at)->timezone('Asia/Kolkata')->format('d M Y, h:i A') }}
-
@endif| SNO | Description | Qty | Rate | Total Price |
|---|---|---|---|---|
| {{ ++$key }} | {{ $item->product->name ?? '-' }} | {{ $item->quantity }} | ₹ {{ $item->price }} | ₹ {{ $item->price * $item->quantity }} | @php $total_paid_amount=$total_paid_amount+($item->price * $item->quantity); @endphp
| Subtotal | ₹ {{ number_format($total_paid_amount,2) }} |
| Total Paid | ₹ {{ number_format($total_paid_amount,2) }} |
Thank you for your order!