{{$item['product_name']}} |
{{storecurrency().number_format($item['sold_price_of_product'],2) }} |
{{$item['sales_percentage_of_product'] }}% |
{{$item['quantity']}} |
{{storecurrency().number_format($item['item_discount'],2)}} |
{{storecurrency().number_format($item['order_discount'],2)}} |
{{storecurrency().number_format((float)$item['average_price'],2) }} |
{{storecurrency().number_format($item['cost_of_goods'],2) }} |
{{$item['percentage_cog'] }}% |
{{storecurrency().number_format($item['sales_price_exl_disc'],2) }} |
@if ($products_taxable==1)
{{storecurrency().$item['tax_amount']}} ({{round((int)$item['tax_percentage'])}}%) |
@endif
${{ isset($item['sales_price_exl_disc']) ? $item['sales_price_exl_disc'] : '0' }} |
@if(!empty($item['itemattr']))
@foreach($item['itemattr'] as $attr)
{{ __('lbl.total') }} |
{{storecurrency().number_format($totalSales,2) }} |
|
{{$totalQty}} |
{{storecurrency().number_format($totalItemDiscount,2) }} |
{{storecurrency().number_format($totalOrderDiscount,2) }} |
|
@if ($products_taxable==1)
${{$totalTax}} |
@endif
{{storecurrency().number_format($totalNetAmount,2) }} |
@else