@extends('layouts.store') @section('title', 'Track Order') @section('content')
Tracking

Track Order

Order Lookup

@if ($errors->any())

{{ $errors->first() }}

@endif @if ($hasSearch && ! $order && ! $errors->any())

No order found with this order number and delivery phone.

@endif
@if ($order)
Current Status

{{ $order->statusLabel() }}

{{ $order->order_number }}

{{ \App\Models\SiteSetting::formatPrice($order->total) }}
    @foreach ($order->trackingSteps() as $step)
  1. $step['completed'], 'current' => $step['current']])>
    {{ $step['label'] }} @if ($step['timestamp']) {{ $step['timestamp']->format('d M Y, h:i A') }} @elseif ($step['completed']) Updated @else Pending @endif
  2. @endforeach
@foreach ($order->items as $item) @endforeach
Product Qty Total
{{ $item->product_name }} @if ($item->variant_label) {{ $item->variant_label }} @endif {{ $item->quantity }} {{ \App\Models\SiteSetting::formatPrice($item->line_total) }}
@else
Status

Enter your order details

Use your order number and delivery phone to view the latest payment, processing, delivery, and completion status.

@endif
@endsection