sackey cbae4564b9
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
Add customer portal views for dashboard, estimates, invoices, vehicles, and work orders
- Implemented dashboard view with vehicle stats, active services, recent activity, and upcoming appointments.
- Created estimates view with filtering options and a list of service estimates.
- Developed invoices view to manage service invoices and payment history with filtering.
- Added vehicles view to display registered vehicles and their details.
- Built work orders view to track the progress of vehicle services with filtering and detailed information.
2025-08-08 09:56:26 +00:00

131 lines
7.7 KiB
PHP

<div>
<div class="mb-8">
<h1 class="text-2xl font-bold text-gray-900">My Appointments</h1>
<p class="text-gray-600">View and manage your service appointments.</p>
</div>
<!-- Filters -->
<div class="bg-white rounded-lg shadow p-6 mb-6">
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
<div>
<label class="block text-sm font-medium text-gray-700 mb-2">Status</label>
<select wire:model.live="filterStatus" class="w-full border-gray-300 rounded-md shadow-sm focus:border-blue-500 focus:ring-blue-500">
<option value="">All Statuses</option>
<option value="pending">Pending</option>
<option value="confirmed">Confirmed</option>
<option value="completed">Completed</option>
<option value="cancelled">Cancelled</option>
</select>
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-2">Date</label>
<input type="date" wire:model.live="filterDate" class="w-full border-gray-300 rounded-md shadow-sm focus:border-blue-500 focus:ring-blue-500">
</div>
<div class="flex items-end">
<button wire:click="$set('filterStatus', ''); $set('filterDate', '')"
class="px-4 py-2 border border-gray-300 rounded-md text-gray-700 hover:bg-gray-50">
Clear Filters
</button>
</div>
</div>
</div>
<!-- Appointments List -->
<div class="bg-white rounded-lg shadow overflow-hidden">
@if($appointments->count() > 0)
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Date & Time</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Service Type</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Vehicle</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Service Advisor</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Status</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Actions</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
@foreach($appointments as $appointment)
<tr class="hover:bg-gray-50">
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm font-medium text-gray-900">
{{ $appointment->appointment_datetime->format('M j, Y') }}
</div>
<div class="text-sm text-gray-500">
{{ $appointment->appointment_datetime->format('g:i A') }}
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">{{ ucfirst(str_replace('_', ' ', $appointment->appointment_type)) }}</div>
@if($appointment->customer_notes)
<div class="text-sm text-gray-500">{{ Str::limit($appointment->customer_notes, 50) }}</div>
@endif
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">
{{ $appointment->vehicle->year ?? '' }}
{{ $appointment->vehicle->make ?? '' }}
{{ $appointment->vehicle->model ?? '' }}
</div>
<div class="text-sm text-gray-500">{{ $appointment->vehicle->license_plate ?? '' }}</div>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900">
{{ $appointment->assignedTechnician->name ?? 'Not assigned' }}
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium
@switch($appointment->status)
@case('confirmed')
bg-green-100 text-green-800
@break
@case('pending')
bg-yellow-100 text-yellow-800
@break
@case('completed')
bg-blue-100 text-blue-800
@break
@case('cancelled')
bg-red-100 text-red-800
@break
@default
bg-gray-100 text-gray-800
@endswitch
">
{{ ucfirst($appointment->status) }}
</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium">
@if($appointment->status === 'pending')
<button class="text-red-600 hover:text-red-900">Cancel</button>
@endif
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
@if($appointments->hasPages())
<div class="px-6 py-3 border-t border-gray-200">
{{ $appointments->links() }}
</div>
@endif
@else
<div class="text-center py-12">
<svg class="mx-auto h-12 w-12 text-gray-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"></path>
</svg>
<h3 class="mt-2 text-sm font-medium text-gray-900">No appointments found</h3>
<p class="mt-1 text-sm text-gray-500">
@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
</p>
</div>
@endif
</div>
</div>