Ecom Tally
Track Another Order
Order Details
{{ $order->invoice_no }}
•
Order #{{ $order->id }}
•
{{ $order->created_at->format('M d, Y') }}
{{ config('custom.currency_symbol', '$') }}{{ number_format($order->total_amount, 2) }}
Total Amount
Order Status
{{ ucfirst($order->status) }}
Payment Status: {{ ucfirst($order->payment_status) }}
{{ ucfirst($order->status) }}
Order Items
@foreach($order->items as $item)
{{ $item->product->name }}
Qty: {{ $item->quantity }}
{{ config('custom.currency_symbol', '$') }}{{ number_format($item->total_price, 2) }}
@endforeach
Status History
@forelse($order->statusHistories as $history)
{{ ucfirst($history->status) }}
@if($history->note)
{{ $history->note }}
@endif
{{ $history->created_at->format('M d, Y g:i A') }}
@empty
No status updates available
@endforelse
Customer Information
{{ $order->customer_name }}
{{ $order->customer_phone }}
Delivery Address
{{ $order->customer_address }}
Store Information
{{ $order->store->store_name }}
@if($order->store->store_address)
{{ $order->store->store_address }}
@endif
@if($order->deliveryPartner)
Delivery Partner
{{ $order->deliveryPartner->name }}
@if($order->tracking_id)
Tracking ID: {{ $order->tracking_id }}
@endif @if($order->tracking_url)
Track Package
@endif
@endif