@if(isset($freelancer->logo_path)) @endif

Quotation To :

{{ ucfirst($quote->client->user->first_name). ' ' .ucfirst($quote->client->user->last_name) }}

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

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

E{{ $quote->client->user->email }}

@if(!empty($quote->client->user->contact_number))

P{{ $quote->client->user->contact_number }}

@endif

Project Titles

Deliverables

Qty

Rate

Cost

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

    @foreach($quote->quoteDeliverable as $item)
  • {{ ucfirst($item->deliverables) }}
  • @endforeach
    @foreach($quote->quoteDeliverable as $item)
  • {{ number_format( $item->quantity, 2, '.', ',') }}
  • @endforeach
    @foreach($quote->quoteDeliverable as $item)
  • {{ $currencySymbol }}{{ number_format( $item->rate, 2, '.', ',') }}
  • @endforeach
    @foreach($quote->quoteDeliverable as $item)
  • {{ $currencySymbol }}{{ number_format( $item->cost, 2, '.', ',') }}
  • @endforeach

Invoice Terms

{!! nl2br(ucfirst($quote->terms)) !!}

Total Price

@php $taxAmount = 0; @endphp @if($quote->is_tax && $quote->tax_percentage != 0)

Tax ({{ $quote->tax_percentage }}%)

@endif Total Amount

{{ $currencySymbol }}{{ number_format( $quote->quoteDeliverableCount[0]->sum_cost, 2, '.', ',') }}

@if($quote->is_tax && $quote->tax_percentage != 0) @php $taxAmount = ($quote->quoteDeliverableCount[0]->sum_cost * $quote->tax_percentage) / 100; @endphp

{{ $currencySymbol }}{{ number_format( $taxAmount, 2, '.', ',') }}

@endif {{ $currencySymbol }}{{ number_format( ($quote->quoteDeliverableCount[0]->sum_cost + $taxAmount) , 2, '.', ',') }}