View and manage your service invoices and payment history.
| Invoice # | Vehicle | Date | Amount | Status | Actions |
|---|---|---|---|---|---|
|
#{{ $invoice->order_number }}
Service Order
|
{{ $invoice->vehicle->year ?? '' }}
{{ $invoice->vehicle->make ?? '' }}
{{ $invoice->vehicle->model ?? '' }}
{{ $invoice->vehicle->license_plate ?? '' }}
|
{{ $invoice->completed_at ? \Carbon\Carbon::parse($invoice->completed_at)->format('M j, Y') : 'N/A' }}
{{ $invoice->completed_at ? \Carbon\Carbon::parse($invoice->completed_at)->format('g:i A') : '' }}
|
${{ number_format($invoice->total_amount, 2) }}
@if($invoice->labor_cost + $invoice->parts_cost != $invoice->total_amount)
Labor: ${{ number_format($invoice->labor_cost, 2) }}
Parts: ${{ number_format($invoice->parts_cost, 2) }}
@if($invoice->tax_amount > 0)
+ Tax: ${{ number_format($invoice->tax_amount, 2) }}
@endif
@endif
|
{{ ucfirst($invoice->status) }} | View Details @if($invoice->status === 'completed') | Download Available @endif |
@if($filterStatus) Try adjusting your filters or contact us about your service history. @else You don't have any invoices yet. Complete a service to see invoices here. @endif
You have {{ $invoices->count() }} completed service order(s) totaling ${{ number_format($invoices->sum('total_amount'), 2) }}.