@extends('layouts.app') @section('title', 'Order ' . $storefrontOrder->order_number) @section('page-title', 'Order: ' . $storefrontOrder->order_number) @section('content')
| Item | Qty | Unit Price | GST | Total |
|---|---|---|---|---|
| {{ $item->item_name }} | {{ $item->quantity }} {{ $item->unit }} | ₹{{ number_format($item->unit_price, 2) }} | {{ $item->gst_rate }}% ₹{{ number_format($item->gst_amount, 2) }} |
₹{{ number_format($item->total_amount, 2) }} |
| Total: | ₹{{ number_format($storefrontOrder->total_amount, 2) }} | |||
Invoice Auto-Generated
{{ $storefrontOrder->invoice->invoice_number }} — {{ $storefrontOrder->invoice->invoice_date->format('d M Y') }}
{{ $storefrontOrder->customer_name }}
📞 {{ $storefrontOrder->customer_phone }}
@if($storefrontOrder->customer_email)📧 {{ $storefrontOrder->customer_email }}
@endif @if($storefrontOrder->delivery_address)Delivery Address
{{ $storefrontOrder->delivery_address }}
Special Instructions
{{ $storefrontOrder->special_instructions }}