@php $settings_data = \App\Models\Utility::settingsById($proposal->created_by); @endphp
@if ($settings_data['SITE_RTL'] == 'on') @endif
{{ __('PROPOSAL') }}@if ($settings['qr_display'] == 'on')
{!! DNS2D::getBarcodeHTML(route('proposal.link.copy', \Crypt::encrypt($proposal->proposal_id)), 'QRCODE', 2, 2) !!}
@endif
|
|
|
@if ($settings['company_name'])
{{ $settings['company_name'] }}
@endif
|
@endif
|
|
{{ __('Bill To') }}:
@if (!empty($customer->billing_name))
{{ !empty($customer->billing_name) ? $customer->billing_name : '' }} |
@if ($settings['shipping_display'] == 'on')
{{ __('Ship To') }}:
@if (!empty($customer->shipping_name))
{{ !empty($customer->shipping_name) ? $customer->shipping_name : '' }} |
@endif
| {{ __('Item') }} | {{ __('Quantity') }} | {{ __('Rate') }} | {{ __('Discount') }} | {{ __('Tax') }} (%) | {{ __('Price') }} {{ __('after tax & discount') }} | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $item->name }} | @php $unitName = App\Models\ProductServiceUnit::find($item->unit); @endphp{{ $item->quantity }} {{ $unitName != null ? '(' . $unitName->name . ')' : '' }} | {{ Utility::priceFormat($settings, $item->price) }} | {{ $item->discount != 0 ? Utility::priceFormat($settings, $item->discount) : '-' }} | @php $itemtax = 0; @endphp
@if (!empty($item->itemTax))
@foreach ($item->itemTax as $taxes)
@php
$itemtax += $taxes['tax_price'];
@endphp
{{ $taxes['name'] }} ({{ $taxes['rate'] }}) {{ $taxes['price'] }} @endforeach @else - @endif |
{{ Utility::priceFormat($settings, $item->price * $item->quantity - $item->discount + $itemtax) }} | @if (!empty($item->description))||||||||
| {{ $item->description }} | |||||||||||||
| {{ __('Total') }} | {{ $proposal->totalQuantity }} | {{ Utility::priceFormat($settings, $proposal->totalRate) }} | {{ Utility::priceFormat($settings, $proposal->totalDiscount) }} | {{ Utility::priceFormat($settings, $proposal->totalTaxPrice) }} | |||||||||
|
|||||||||||||