| Date | Order No. | Customer | Location | Status | Shipping Cost |
|---|---|---|---|---|---|
| {{ $order->created_at->format('M d, Y') }} | #{{ $order->order_number }} | {{ $order->user ? $order->user->name : ($order->name ?: 'Guest') }} | @if($order->shippingAddress) {{ $order->shippingAddress->city }}, {{ $order->shippingAddress->state }} @else N/A @endif | {{ strtoupper($order->status) }} | ₹{{ number_format($shipping, 2) }} |
| No shipping data found for the selected period. | |||||
| Total Shipping Cost | ₹{{ number_format($totalShipping, 2) }} | ||||
{{ $orders->links() }}