@extends('admin.layout') @section('css') @endsection @section('content')

(#{{$data->id}}) Order Detail

@csrf
Customer Details
@if($errors->has('customer_name'))

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

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

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

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

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

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

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

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

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

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

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

@endif
Your Cart ({{count($data->children)}} items)
@foreach ($data->children as $item) @endforeach
Image Product info Price Quantity Total
{{$item->title}} ({{$item->sku}})
PKR {{$item->price}} {{$item->quantity}} PKR {{$item->total}}
Grand Total PKR {{$data->grandtotal}}
Status
@if($errors->has('tracking_id'))

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

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

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

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

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

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

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

@endif
ORDER NOTES
Invoice
@endsection @section('js') @endsection