Order Tracking Management

{{ $order->invoice_no }} Order #{{ $order->id }} {{ $order->created_at->format('M d, Y h:i A') }}
{{-- Order Tracking --}}

Order Information

Customer
{{ $order->customer_name }}
{{ $order->customer_phone }}
Store
{{ $order->store->store_name }}
Delivery Partner
{{ $order->deliveryPartner->name ?? 'Not assigned' }}
Total Amount
{{ config('custom.currency_symbol') }}{{ number_format($order->total_amount, 2) }}

Current Status

Order Status
{{ ucfirst($order->status) }}
Payment Status
{{ ucfirst($order->payment_status) }}
@if ($order->tracking_id)
Tracking ID
{{ $order->tracking_id }}
@endif
{{-- ordered items --}}

Ordered Items

Men Colourblocked PU Sneakers image

Men Colourblocked PU Sneakers

Size: 38
Color: Green & Gray

$56 x 1

$56

Subtotal
$210.00
Shipping Charge
$10.00
Tax Fee
$22.00
Total
$242.00

Update Order Status

@csrf @method('PATCH')

Update Payment Status

@csrf @method('PATCH')

Update Tracking Information

@csrf @method('PATCH')

Quick Actions

Status History

@forelse($order->statusHistories()->latest()->get() as $history)
{{ ucfirst($history->status) }}
@if ($history->note)
{{ $history->note }}
@endif
{{ $history->created_at->format('M d, Y g:i A') }}
@empty

No status history available

@endforelse