{{ $quotation->company->name ?? 'Company' }}

Quotation Request

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 }}

@if($quotation->valid_until) @endif
Issue Date: {{ $quotation->issue_date->format('M d, Y') }}
Valid Until: {{ $quotation->valid_until->format('M d, Y') }}
Number of Items: {{ $quotation->items->count() }}
${{ number_format($quotation->total_amount, 2) }}

What's Included:

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 && ($quotation->company->phone || $quotation->company->email))

@if($quotation->company->phone) Phone: {{ $quotation->company->phone }}
@endif @if($quotation->company->email) Email: {{ $quotation->company->email }} @endif

@endif