Dear {{ $quotation->client_name }},
Thank you for your interest in our services. Please find attached the detailed quotation for your review.
Quotation {{ $quotation->quotation_number }}
| Issue Date: | {{ $quotation->issue_date->format('M d, Y') }} |
| Valid Until: | {{ $quotation->valid_until->format('M d, Y') }} |
| Number of Items: | {{ $quotation->items->count() }} |
What's Included:
-
@foreach($quotation->items->take(5) as $item)
- {{ $item->description }} @endforeach @if($quotation->items->count() > 5)
- ... and {{ $quotation->items->count() - 5 }} more items @endif
The complete quotation is attached to this email as a PDF document. Please review it at your convenience.
If you have any questions or would like to discuss this quotation further, please don't hesitate to contact us.
Best regards,
{{ $quotation->user->name ?? 'The Team' }}
{{ $quotation->company->name ?? 'Company' }}
@if($quotation->company->phone)
Phone: {{ $quotation->company->phone }}
@endif
@if($quotation->company->email)
Email: {{ $quotation->company->email }}
@endif