{{trans('quotation.shipping_address')}}:
{{is_null($quotation->customer)?"":$quotation->customer->address}}
{{is_null($quotation->customer)?"":$quotation->customer->address}}
{{trans('quotation.quotation_no')}} {{$quotation->quotations_number}}
{{trans('quotation.customer')}}:
{{ is_null($quotation->customer)?"":$quotation->customer->full_name }}
{{trans('quotation.date')}}:
{{ $quotation->start_date}}
{{trans('quotation.exp_date')}}:
{{ $quotation->expire_date}}
{{trans('quotation.payment_term')}}:
{{ $quotation->payment_term.' '.trans('quotation.days') }}
{{trans('quotation.sales_team_id')}}:
{{ is_null($quotation->salesTeam)?"":$quotation->salesTeam->salesteam }}
{{trans('quotation.sales_person')}}:
{{ is_null($quotation->salesPerson)?"":$quotation->salesPerson->full_name }}
{{trans('quotation.products')}} @foreach ($quotation->products as $qo_product) @endforeach
{{trans('quotation.product')}} {{trans('quotation.quantity')}} {{trans('quotation.unit_price')}} {{trans('quotation.taxes')}} {{trans('quotation.subtotal')}}
{{$qo_product->product_name}} {{ $qo_product->quantity}} {{ $qo_product->price}} {{ number_format($qo_product->quantity * $qo_product->price * floatval(Settings::get('sales_tax')) / 100, 2, '.', '') }} {{ $qo_product->sub_total }}
{{trans('quotation.untaxed_amount')}} {{ $quotation->total }}
{{trans('quotation.taxes')}} {{ $quotation->tax_amount }}
{{trans('quotation.total')}} {{ $quotation->grand_total }}
{{trans('quotation.discount')}} {{ $quotation->discount }}
{{trans('quotation.final_price')}} {{ $quotation->final_price }}