{{ $company }}

Proposal
{{ $proposal->number }}
{{ $proposal->created_at->format('Y-m-d') }} @if($proposal->valid_until)
Valid until {{ $proposal->valid_until->format('Y-m-d') }}@endif
Prepared for:
{{ $proposal->contact?->display_name }}
@if($proposal->contact?->email){{ $proposal->contact->email }}
@endif @if($proposal->contact?->phone){{ $proposal->contact->phone }}@endif
@foreach($proposal->items as $item) @endforeach
DescriptionQtyUnit PriceTotal
{{ $item->description }} {{ rtrim(rtrim(number_format($item->qty, 2), '0'), '.') }} {{ money($item->unit_price) }} {{ money($item->total) }}
Subtotal{{ money($proposal->subtotal) }}
Discount-{{ money($proposal->discount) }}
Total{{ money($proposal->total) }}
@if($proposal->notes)
Notes

{{ $proposal->notes }}

@endif