@extends($activeTemplate.'layouts.master') @section('content')
| @lang('Product Image') | @lang('Product Name') | @if($order->status == 1)@lang('File Download') | @endif@lang('Quantity') | @lang('Status') | @lang('Total Amount') |
|---|---|---|---|---|---|
|
|
{{__($item->name)}} | @if($order->status == 1)@lang('File') | @endif{{__($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 |