@extends('customer.layout') @section('title','Track Order') @section('content')

Track Your Order

{{-- ERROR --}} @if(session('error'))
{{ session('error') }}
@endif {{-- SEARCH --}}
@csrf
{{-- RESULT --}} @if(isset($order))
Order #{{ $order->order_no }}
Status:
{{ ucfirst($order->status) }}
Amount:
LKR {{ number_format($order->amount,2) }}
Delivery Address:
{{ $order->address }}
Last Update:
{{ $order->updated_at->format('d M Y, h:i A') }}
{{-- TIMELINE --}}
@endif @endsection