@extends(App\Models\General::first()->theme.'.layouts.app') @section('title') Order Cancel | {{App\Models\General::first()->title}} | {{App\Models\General::first()->subtitle}} @endsection @section('SEO') @endsection @push('css') @endpush @section('contents')
@include(App\Models\General::first()->theme.'.customer.includes.sidebar')
@include(App\Models\General::first()->theme.'.alerts') @if(session('selectError'))
Oops! {{Session::get('selectError') }}.
@endif

Orders Cancel Back Order

@csrf @if ($errors->has('itemId'))

{{ $errors->first('itemId') }}

@endif @foreach($order->items as $i=>$item) @endforeach
Item Description Price Discount Quantity Total Price
@if($item->product) @endif
{{ $item->product_name }}
@if($item->color) Color: {{ $item->color }}, @endif @if($item->size) Size: {{ $item->size }}, @endif @if($item->status=='cancelled') {{ucfirst($item->status)}}
@endif
@if($order->order_status=='delivered') Give a Rivew @if ($item->product && $item->product->product_key)
Product Key: {{$item->product->product_key}} @endif @endif
{{ number_format($item->price,0) }} {{ number_format($item->total_deal_discount + $item->total_coupon_discount,0) }} {{ number_format($item->quantity,0) }} {{ number_format($item->final_price,0) }}
@if ($errors->has('reason'))

{{ $errors->first('reason') }}

@endif
@if ($errors->has('message'))

{{ $errors->first('message') }}

@endif
@endsection @push('js') @endpush