Invoice ID:
{{ $invoice->invoice_number }}
Inspection ID:
{{ $schedule->appointment_id ?? 'AP-' . $schedule->id }}
Property Address:
{{ $fullPropertyAddress }}
Invoice Date:
{{ $invoiceDate }}
Invoice Status:
{{ ucfirst($invoice->status ?? 'Pending') }}
@if($invoice->invoice_note)
@endif
Client Information
{{ substr($primaryClient, 0, 1) }}
{{ $primaryClient }}
@if($clientPhone)
{{ $clientPhone }}
@endif
@if($clientEmail)
{{ $clientEmail }}
@endif
Fees Details
| Description |
Quantity |
Unit Price |
Amount |
@forelse($services as $service)
| {{ $service['name'] }} |
{{ $service['quantity'] }} |
$ {{ number_format($service['amount'], 0) }} |
$ {{ number_format($service['line_total'], 0) }} |
@empty
| No services found |
@endforelse
Total Fees:
$ {{ number_format($totalFees, 2) }}
Sub Total:
$ {{ number_format($subTotal, 2) }}
Grand Total:
$ {{ number_format($grandTotal, 2) }}
Payment Details
{{ $paymentStatus }}
@if($amountDue > 0)
Amount Due: $ {{ number_format($amountDue, 0) }}
@else
No payment has been made yet.
@endif