{{ config('gmlm.company_name', config('app.name')) }} Proposal

{{ $proposal->title }}

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

Prepared For
{{ $proposal->lead->full_name }}
{{ $proposal->lead->email }}
Total Investment
${{ number_format($proposal->total, 2) }} {{ $proposal->currency }}
Valid Until
{{ $proposal->created_at->addDays(30)->format('F j, Y') }}
@if($proposal->intro_text)
{{ $proposal->intro_text }}
@endif
Scope of Work & Pricing
@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)
Additional Notes

{{ $proposal->notes }}

@endif @if($proposal->terms)
Terms & Conditions

{{ $proposal->terms }}

@endif