{{-- This is the HTML Order Invoice. This page is rendered by viewOrderInvoice() method inside Admin/OrderController.php --}}
Product Code | Size | Color | Price | Quantity | Totals |
{{ $product['product_code'] }} {{-- Laravel barcode/QR code generation package (to show barcodes/QR codes for both Product ID and Product Code): https://github.com/milon/barcode --}} @php echo DNS1D::getBarcodeHTML($product['product_code'], 'C39'); // This is the product `product_code` Barcode // echo DNS2D::getBarcodeHTML($product['product_code'], 'QRCODE'); // This is the product `product_code` QR code @endphp | {{ $product['product_size'] }} | {{ $product['product_color'] }} | INR {{ $product['product_price'] }} | {{ $product['product_qty'] }} | INR {{ $product['product_price'] * $product['product_qty'] }} |
Subtotal | INR {{ $subTotal }} | ||||
Shipping Charges | INR 0 | ||||
Grand Total |
INR {{ $orderDetails['grand_total'] }}
@if ($orderDetails['payment_method'] == 'COD') (Already Paid) @endif |