{{-- Page CSS: File: sales-report.css Location: public/common/css/sales-report.css Used For: sales-report page specific layout and styling. --}}
| Order ID | Order No | Customer | Mobile | Order Status | Payment Status | Sub Total | Shipping | Tax | Discount | Grand Total |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $order->id }} | {{ $order->order_number }} | {{ $buyer->name ?? 'N/A' }} | {{ $buyer->mobile ?? 'N/A' }} | {{ $order->order_status }} | {{ $order->payment_status }} | ₹{{ $order->sub_total }} | ₹{{ $order->shipping_charge }} | ₹{{ $order->tax_amount }} | ₹{{ $order->discount_amount }} | ₹{{ $order->grand_total }} |