@extends('admin.admin-layout') @section('content')
Order / Order Details / #{{ $order->id }} - {{ $order->created_at->format('F d, Y \a\t h:i A') }}
| Product Name & Size | Status | Quantity | Price | Tax | Amount |
|---|---|---|---|---|---|
|
{{ $item->product->name ?? 'Product' }}
Size : {{ $item->product_size }} |
Ready | {{ $item->quantity }} | ₹ {{ number_format($item->order_price, 2) }} | ₹ 0.00 | {{-- Tax or additional charges --}}₹ {{ number_format($item->quantity * $item->order_price, 2) }} |
{{ $order->first_name . ' ' . $order->last_name }}
{{ $order->phone }}
{{ $order->address }}
{{ $order->apartment }}
{{ $order->city }}, {{ $order->state }}
{{ $order->pincode }}
Same as shipping address
|
Sub Total : |
₹ {{ number_format($order->subtotal, 2) }} |
|
Discount : |
- ₹ {{ number_format(($order->coupon_applied ? ($order->subtotal - $order->total + $order->shipping_cost) : 0), 2) }} |
| Delivery Charge: | ₹ {{ number_format($order->shipping_cost, 2) }} |
| Estimated Tax (0%) : | ₹ 0.00 |
Transaction ID:
#{{ $order->razorpay_payment_id ?? 'N/A' }}
Card Holder Name:
{{ $order->first_name . ' ' . $order->last_name }}