Estimate #{{ $estimate->id }}

{{ $estimate->title }}

Download PDF

Customer

Name

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

Email

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

Description

{{ $estimate->description }}

@foreach ($estimate->items as $item) @endforeach
Item Qty Unit Total
{{ $item->name }} {{ number_format($item->quantity, 2) }} ${{ number_format($item->unit_price, 2) }} ${{ number_format($item->total, 2) }}

Totals

Subtotal ${{ number_format($estimate->subtotal, 2) }}
Tax (6%) ${{ number_format($estimate->tax, 2) }}
Total ${{ number_format($estimate->total, 2) }}