@extends('layouts.portal') @section('title', 'Technician Workshop Queue — Abu Dhabi Auto Care') @section('content')
WORKSHOP FLOOR • MUSSAFAH M11

Assigned Workshop Vehicle Jobs

Technician view for updating preparation, spray booth baking, and quality control stages.

Vehicles in Progress {{ $assignedJobs->count() }}
Currently in Paint Booth {{ $inBoothCount }}
Completed by You {{ $completedCount }}
@forelse($assignedJobs as $job)
{{ $job->order_number }} {{ $job->vehicle_make }} {{ $job->vehicle_model }} ({{ $job->vehicle_year ?: 'N/A' }})
Client: {{ $job->client->name }} • {{ $job->vehicle_category }} • Plate: {{ $job->vehicle_plate ?: 'N/A' }}
{{ $job->status_label }}
Service: {{ $job->service_title }}
Target Shade: {{ $job->target_color ?: 'Factory Refresh' }}
Customer Request: {{ Str::limit($job->customer_notes ?: 'Standard job', 40) }}
Current Stage: {{ $job->progress_percent }}% Complete
@csrf
@empty
No active workshop jobs assigned to your queue at the moment.
@endforelse
@endsection