| Type | Description | Qty | Unit Price | Total |
|---|---|---|---|---|
| {{ ucfirst($item->type) }} |
{{ $item->description }}
@if($item->part)
Part #: {{ $item->part->part_number }} @endif @if($item->part_number) Part #: {{ $item->part_number }} @endif @if($item->technical_notes) {{ $item->technical_notes }} @endif |
{{ $item->quantity }} | ${{ number_format($item->unit_price, 2) }} | ${{ number_format($item->total_amount, 2) }} |
| Subtotal: | ${{ number_format($invoice->subtotal, 2) }} |
| Discount: | -${{ number_format($invoice->discount_amount, 2) }} |
| Tax ({{ $invoice->tax_rate }}%): | ${{ number_format($invoice->tax_amount, 2) }} |
| Total: | ${{ number_format($invoice->total_amount, 2) }} |
Payment Date: {{ $invoice->paid_at->format('M j, Y g:i A') }}
@if($invoice->payment_method)Payment Method: {{ ucfirst(str_replace('_', ' ', $invoice->payment_method)) }}
@endif @if($invoice->payment_reference)Reference: {{ $invoice->payment_reference }}
@endif @if($invoice->payment_notes)Notes: {{ $invoice->payment_notes }}
@endifPayment is due by {{ $invoice->due_date->format('M j, Y') }}.
Please include invoice number {{ $invoice->invoice_number }} with your payment.
Payment Methods: Cash, Credit Card, Check, Bank Transfer