@extends('layouts.frontend.app') @section('title', 'Shopping Now') @section('content')
@csrf

Paste Your Invoice Number Without #

@if(isset($order))
@foreach ($order->orderDetails as $key => $item) @endforeach
SL Product Size Color Qty Price Subtotal
{{$key+1}} {{$item->title}} {{$item->size}} {{$item->color}} {{$item->qty}} {{number_format($item->price, 2, '.', ',')}} {{number_format($item->total_price, 2, '.', ',')}}
Order has left our supply center.
Your order is being processing please wait
@if($order->status==1 || $order->status==3 || $order->status==4)
Order has been successfull.You wil receive your product shortly
@endif @if($order->status==1 || $order->status==3 || $order->status==4)
Arrived at Shipping Company.
@endif @if($order->status==3)
Order Arrived and Picked Up!
Thank you for your Purchase
@endif @if($order->status==2)
Order is Cancel.
@endif
@endif
@endsection