@if(isset($quote->client) && !empty($quote->client)) @if($quote->client->address)

{{ $quote->client->address ? $quote->client->address : '' }}

@endif @if($quote->client->user->email) {{ $quote->client->user->email }} @endif @if($quote->client->user->contact_number)

{{ $quote->client->user->country_code ? '+'.$quote->client->user->country_code : '' }} {{ $quote->client->user->contact_number }}

@endif @else Unknown Client @endif

Quotation

Quotation : {{ str_pad($quote->quote_id,4,'0',STR_PAD_LEFT) }}

Project : {{ ucfirst($quote->title) }}

Quotation To : @if(isset($quote->client) && !empty($quote->client)) {{ ucfirst($quote->client->user->first_name). ' ' .ucfirst($quote->client->user->last_name) }} @else Unknown Client @endif

Quotation Date : {{ date('d-m-Y', strtotime($quote->date)) }}

@php $count = 1; @endphp @foreach($quote->quoteDeliverable as $item) @php $count = $count + 1; @endphp @endforeach @php $taxAmount = 0; @endphp @if($quote->is_tax && $quote->tax_percentage != 0) @php $taxAmount = ($quote->cost_sum_count * $quote->tax_percentage) / 100; @endphp @endif
Deliverables Qty Rate Cost
{{ $count }} {{ ucfirst($item->deliverables) }} {{ number_format( $item->quantity, 2, '.', ',') }} {{ $currencySymbol }}{{ number_format( $item->rate, 2, '.', ',') }} {{ $currencySymbol }}{{ number_format( $item->cost, 2, '.', ',') }}
Tax({{ $quote->tax_percentage }}%) {{ $currencySymbol }}{{ number_format( $taxAmount, 2, '.', ',') }}

Payment Information

Payment to be made to

Name

IBAN

Account Number

Bank Name

Country

:{{ $quote->name ? $quote->name : '-'}}

:{{ $quote->iban ? $quote->iban : '-'}}

:{{ $quote->account_number ? $quote->account_number : '-'}}

:{{ $quote->bank ? $quote->bank : '-'}}

:{{ $quote->country ? $quote->country : '-'}}

Total Amount {{ $currencySymbol }}{{ number_format( $quote->cost_sum_count, 2, '.', ',') }}

Sub Total {{ $currencySymbol }}{{ number_format( ($quote->cost_sum_count + $taxAmount), 2, '.', ',') }}


Powered by

2019 Teem.sa. All rights reserved.