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; $grandTotal = 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, 2) }} |
{{ number_format($prodDetail->price, 2) }} |
{{ $prodDetail->unit ?? '-' }} |
₹{{ number_format($prodDetail->total, 2) }} |
@php $grandTotal += $prodDetail->total; @endphp
@endforeach
@endforeach
@if($slNo > 1)
Grand Total:₹{{ number_format($grandTotal, 2) }}
@endif
@endif
@if($quotationTerms && $quotationTerms->count() > 0)
Terms and Conditions
@foreach($quotationTerms as $index => $term)
- {{ $index + 1 }}. {{ $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