@extends('general_base') @section('title', 'Track Your Order') @section('style') @endsection @section('content')

Order Tracking

Enter your order details below to check the current status and estimated delivery time

@if(session('error'))
{{ session('error') }}
@endif
@if(isset($statusInfo))
@php $currentFound = false; $statusTimes = collect($statusInfo['history'])->pluck('timestamp', 'status'); @endphp
Order Placed
@if($time = $statusTimes->get('pending'))
{{ $time }}
@endif
Processing
@if($time = $statusTimes->get('processing'))
{{ $time }}
@endif
Shipped
@if($time = $statusTimes->get('shipped'))
{{ $time }}
@endif
{{ $statusInfo['statuses']['cancelled'] ? 'Cancelled' : 'Delivered' }}
@if($time = $statusTimes->get($statusInfo['statuses']['cancelled'] ? 'cancelled' : 'delivered'))
{{ $time }}
@endif
@endif
@endsection