@if($logoPath)

@else
{{ $account->name ?? config('app.name') }}
@endif
{{ $account->name ?? config('app.name') }}
@if($account->address ?? null)
{{ $account->address }}
@endif
@if($quotation->creator?->email)
Email: {{ $quotation->creator->email }}
@endif
@if($account->website ?? null)
Website: {{ $account->website }}
@endif
To,
{{ $billToName }}
@if($quotation->lead?->company?->address)
{{ $quotation->lead->company->address }}
@endif
Dear Sir/Mam,
While thanking you for your enquiry, we are pleased to quote below our lowest prices for the
following as desired, subjected to following terms & conditions.
@if($quotation->details && $quotation->details->count() > 0)
| SL No |
Product |
Description |
Quantity |
Price/Unit |
Unit |
Total |
@php $slNo = 0; @endphp
@foreach($quotation->details as $detail)
@foreach($detail->product_details as $prodDetail)
@php $slNo++; @endphp
| {{ $slNo }} |
{{ $detail->product->name ?? 'N/A' }} |
{{ $prodDetail->description }} |
{{ number_format($prodDetail->quantity, fmod($prodDetail->quantity, 1) == 0 ? 0 : 2) }} |
{{ number_format($prodDetail->price, fmod($prodDetail->price, 1) == 0 ? 0 : 2) }} |
{{ $prodDetail->unit ?? '-' }} |
₹{{ number_format($prodDetail->total, fmod($prodDetail->total, 1) == 0 ? 0 : 2) }} |
@endforeach
@endforeach
@endif
@if($quotationTerms && $quotationTerms->count() > 0)
Terms & Conditions
@foreach($quotationTerms as $term)
- {{ $term->term }}
@endforeach
@endif
We look forward for a long term association with you and kindly send us your acceptance
confirmation, with your PO.
Thank You
From, {{ $account->name ?? config('app.name') }}
@if($quotation->creator)
{{ $quotation->creator->name }}
@if($quotation->creator->phone)
{{ $quotation->creator->country_code }}{{ $quotation->creator->phone }}
@endif
@endif