@extends('layouts.storeapp') @section('content') {{-- Store-Orders-Details --}}

Order Details

{{-- --}}
Payment Type: @if($Order->pay_status == 1) Cash on delivery @endif
@php $date = date("M j, Y, g:i a",strtotime($Order->order_date));@endphp
Order Date: {{$date}}
@if($Order) @foreach($Order->orderdetails as $item) @if($item->OrderProperties()->count() != 0) @else @endif @endforeach @endif @if($Order) @endif
Product image Features Price Quantity Total Amount
{{$item->product->title}} @foreach($item->OrderProperties as $OrderProperty)

{{App\ProductPropertyTypeValue::getValue($OrderProperty->property_value_id)->title}}

@endforeach
not mentioned@currency($item->product->sales_amount) {{$item->quantity}} @currency($item->total_amount)
Total Amount: @currency($Order->amount)
Decline Accept
@endsection