📄 Proposal

{{ $companyName }}

Hi {{ $customer?->first_name ?? $lead->first_name }},

@if($proposal->intro_text) {{ $proposal->intro_text }} @else Thank you for your interest in our services. Please find your personalised proposal attached to this email. We have outlined the scope of work, deliverables, and investment required below. @endif

{{ $proposal->title }}

Prepared on {{ $proposal->created_at->format('F j, Y') }}

@foreach($proposal->line_items as $item) @endforeach
Description Qty Unit Price Total
{{ $item['description'] }} {{ $item['quantity'] ?? 1 }} ${{ number_format($item['unit_price'] ?? 0, 2) }} ${{ number_format(($item['quantity'] ?? 1) * ($item['unit_price'] ?? 0), 2) }}
Subtotal ${{ number_format($proposal->subtotal, 2) }}
@if($proposal->tax_rate > 0)
Tax ({{ $proposal->tax_rate }}%) ${{ number_format($proposal->tax_amount, 2) }}
@endif
Total ${{ number_format($proposal->total, 2) }} {{ $proposal->currency }}
@if($proposal->notes)

Notes

{{ $proposal->notes }}

@endif @if($proposal->terms)

Terms & Conditions

{{ $proposal->terms }}

@endif

The full proposal document is attached to this email as a PDF. If you have any questions or would like to discuss further, please don't hesitate to reach out.