@extends($activeTemplate.'layouts.master') @section('content')
@csrf
Product Details
@forelse ($orderDetails->products as $item) @empty @endforelse
@lang('Product Image') @lang('Product Name') @lang('Product Type') @lang('Quantity') @lang('Total Price')
Image {{__($item->name)}} {{__($orderDetails->type[0]->title)}} {{__($item->pivot->product_quantity)}} $ {{$manualOrder->final_price}}
{{__($emptyMessage) }}
Options
@forelse ($orderDetails->options as $option) @empty @endforelse
@lang('Option') @lang('Value')
{{__($option->title)}} @foreach($option->items as $optionItem) {{__($optionItem->value)}} @endforeach
{{__($emptyMessage) }}

Description

{!!$manualOrder->description !!}

@if($manualOrder->status==1) @else @endif
0%
@endsection @push('breadcrumb-plugins') @lang('Back') @endpush @push('style') @endpush @push('script') @endpush