{{trans('sales_order.salesorder_to')}}
{{ is_null($saleorder->customer)?"":$saleorder->customer->full_name }}
{{is_null($saleorder->customer)?"":$saleorder->customer->address}}
{{is_null($saleorder->customer)?"":$saleorder->customer->email}}| {{trans('invoice.product')}} | {{trans('invoice.quantity')}} | {{trans('invoice.unit_price')}} | {{trans('invoice.subtotal')}} |
|---|---|---|---|
| {{$qo_product->product_name}} | {{ $qo_product->quantity}} | {{ $qo_product->price}} | {{ $qo_product->sub_total }} |
| {{trans('invoice.untaxed_amount')}}: | {{ (Settings::get('currency_position')=='left')? Settings::get('currency').$saleorder->total: $saleorder->total.' '.Settings::get('currency') }} | |||
| {{trans('invoice.taxes')}}: | {{ (Settings::get('currency_position')=='left')? Settings::get('currency').$saleorder->tax_amount: $saleorder->tax_amount.' '.Settings::get('currency') }} | |||
| {{trans('invoice.total')}}: | {{ (Settings::get('currency_position')=='left')? Settings::get('currency').$saleorder->grand_total: $saleorder->grand_total.' '.Settings::get('currency') }} | |||
| {{trans('invoice.discount').' '.$saleorder->discount}}%: | {{$saleorder->total*($saleorder->discount/100)}} | |||
|
{{trans('invoice.final_price')}}:
{{ (Settings::get('currency_position')=='left')?
Settings::get('currency').$saleorder->final_price:
$saleorder->final_price.' '.Settings::get('currency') }}
|
||||