Converting estimate to invoice
| Type | Item | Description | Qty | Unit Price | Total |
|---|---|---|---|---|---|
| {{ ucfirst($item->type) }} | @if($item->type === 'parts' && $item->part) {{ $item->part->name }} ({{ $item->part->part_number }}) @else {{ $item->description }} @endif | {{ $item->description }} | {{ $item->quantity }} | ${{ number_format($item->unit_price, 2) }} | ${{ number_format($item->total_amount, 2) }} |
| Total Amount: | ${{ number_format($estimate->total_amount, 2) }} | ||||