{{trans('quotation.quotation_to')}}
{{ is_null($quotation->customer)?"":$quotation->customer->full_name }}
{{is_null($quotation->customer)?"":$quotation->customer->address}}
{{is_null($quotation->customer)?"":$quotation->customer->email}}|
{{trans('invoice.product')}}
|
{{trans('invoice.quantity')}}
|
{{trans('invoice.unit_price')}}
|
{{trans('invoice.subtotal')}}
|
|
|---|---|---|---|---|
| {{($key+1)}} | {{$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').$quotation->total: $quotation->total.' '.Settings::get('currency') }} | |||
| {{trans('invoice.taxes')}}: | {{ (Settings::get('currency_position')=='left')? Settings::get('currency').$quotation->tax_amount: $quotation->tax_amount.' '.Settings::get('currency')}} | |||
| {{trans('invoice.total')}}: | {{ (Settings::get('currency_position')=='left')? Settings::get('currency').$quotation->grand_total: $quotation->grand_total.' '.Settings::get('currency') }} | |||
| {{trans('invoice.discount').' '.$quotation->discount}}%: | {{$quotation->total*($quotation->discount/100)}} | |||
|
{{trans('invoice.final_price')}}:
{{ (Settings::get('currency_position')=='left')?
Settings::get('currency').$quotation->final_price:
$quotation->final_price.' '.Settings::get('currency') }}
|
||||