Estimates

View and manage your service estimates.

@if($estimates->count() > 0)
@foreach($estimates as $estimate) @endforeach
Estimate # Vehicle Date Amount Status Actions
#{{ $estimate->id }}
Job Card #{{ $estimate->job_card_id }}
{{ $estimate->jobCard->vehicle->year ?? '' }} {{ $estimate->jobCard->vehicle->make ?? '' }} {{ $estimate->jobCard->vehicle->model ?? '' }}
{{ $estimate->jobCard->vehicle->license_plate ?? '' }}
{{ $estimate->created_at->format('M j, Y') }}
{{ $estimate->created_at->format('g:i A') }}
${{ number_format($estimate->total_amount, 2) }}
@if($estimate->subtotal_amount != $estimate->total_amount)
Subtotal: ${{ number_format($estimate->subtotal_amount, 2) }} @if($estimate->tax_amount > 0) + Tax: ${{ number_format($estimate->tax_amount, 2) }} @endif
@endif
{{ ucfirst($estimate->status) }} View Details @if(in_array($estimate->status, ['sent', 'viewed'])) | Action Required @endif
@if($estimates->hasPages())
{{ $estimates->links() }}
@endif @else

No estimates found

@if($filterStatus) Try adjusting your filters or contact us about your vehicle service. @else You don't have any estimates yet. Contact us to schedule a service. @endif

@endif