Estimate #{{ $estimate->id }}
{{ $estimate->customer->name }}
{{ $estimate->customer->email }}
@if ($estimate->customer->address){{ $estimate->customer->address }}
@endif{{ $estimate->description }}
| 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) }} |