My Appointments

View and manage your service appointments.

@if($appointments->count() > 0)
@foreach($appointments as $appointment) @endforeach
Date & Time Service Type Vehicle Service Advisor Status Actions
{{ $appointment->appointment_datetime->format('M j, Y') }}
{{ $appointment->appointment_datetime->format('g:i A') }}
{{ ucfirst(str_replace('_', ' ', $appointment->appointment_type)) }}
@if($appointment->customer_notes)
{{ Str::limit($appointment->customer_notes, 50) }}
@endif
{{ $appointment->vehicle->year ?? '' }} {{ $appointment->vehicle->make ?? '' }} {{ $appointment->vehicle->model ?? '' }}
{{ $appointment->vehicle->license_plate ?? '' }}
{{ $appointment->assignedTechnician->name ?? 'Not assigned' }} {{ ucfirst($appointment->status) }} @if($appointment->status === 'pending') @endif
@if($appointments->hasPages())
{{ $appointments->links() }}
@endif @else

No appointments found

@if($filterStatus || $filterDate) Try adjusting your filters or contact us to schedule a new appointment. @else You don't have any appointments yet. Contact us to schedule your first service. @endif

@endif