@extends($activeTemplate.'layouts.master') @section('content')

{{__($pageTitle)}}

@if($order->status == 1) @endif
@lang('Order No:') # {{__($order->order_number)}}
@foreach($order->products as $item) @if($order->status == 1) @endif @endforeach
@lang('Product Image') @lang('Product Name')@lang('File Download')@lang('Quantity') @lang('Status') @lang('Total Amount')
Image {{__($item->name)}} @lang('File'){{__($item->pivot->product_quantity)}} x {{ showAmount(__($item->price)- ($item->price * $item->discount/100 )) }} @php echo $order->statusBadge($item->status) @endphp @if($item->discount !=0) {{__($general->cur_sym)}}{{ showAmount(__($item->price)- ($item->price * $item->discount/100 )) }} @else {{__($general->cur_sym)}} {{__($item->price * $item->pivot->product_quantity)}} @endif
@endsection