{{ config('app.name') }}

Estimate #{{ $estimate->id }}

Customer

{{ $estimate->customer->name }}

{{ $estimate->customer->email }}

@if ($estimate->customer->address)

{{ $estimate->customer->address }}

@endif
Project

{{ $estimate->description }}

@foreach ($estimate->items as $item) @endforeach
Item Quantity Unit Price Total
{{ $item->name }} {{ number_format($item->quantity, 2) }} ${{ number_format($item->unit_price, 2) }} ${{ number_format($item->total, 2) }}
Subtotal ${{ number_format($estimate->subtotal, 2) }}
Tax ${{ number_format($estimate->tax, 2) }}
Total ${{ number_format($estimate->total, 2) }}