@lang('trans.Order Details')
@foreach ($Cart as $key => $item)
{{ $item['quantity'] }} x {{ $item['product'][ lang('en') ? 'sub_category_name' : 'sub_category_name_ar' ] }}
{{ number_format($Cart[$key]['total'], Country()->decimals , '.', '') }} {{ Country()->currancy_code }}
@if ( $item['note'] )
@lang('trans.notes'): {{ $item['note'] }}
@endif
@endforeach
@lang('trans.subTotal')
{{ number_format($SubTotal, Country()->decimals , '.', '') }} {{ Country()->currancy_code }}
@if ($VAT)
@lang('trans.Vat')({{ setting('vat') }}%)
{{ number_format($VAT, Country()->decimals , '.', '') }} {{ Country()->currancy_code }}
@endif
@if ($discount && $discount > 0)
@lang('trans.discount')({{ $Discounts->first()->percent_off ? $Discounts->first()->percent_off . '%' : $Discounts->first()->discount . Country()->currancy_code }})
{{ number_format($discount, Country()->decimals , '.', '') }} {{ Country()->currancy_code }}
@endif
@if ($type_id == 1)
@lang('trans.delivery_cost')
{{ number_format($delivery_cost, Country()->decimals , '.', '') }} {{ Country()->currancy_code }}
@endif
@lang('trans.netTotal')
{{ number_format($NetTotal, Country()->decimals , '.', '') }} {{ Country()->currancy_code }}