sackey a65fee9d75
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run
Add customer portal workflow progress component and analytics dashboard
- Implemented the customer portal workflow progress component with detailed service progress tracking, including current status, workflow steps, and contact information.
- Developed a management workflow analytics dashboard featuring key performance indicators, charts for revenue by branch, labor utilization, and recent quality issues.
- Created tests for admin-only middleware to ensure proper access control for admin routes.
- Added tests for customer portal view rendering and workflow integration, ensuring the workflow service operates correctly through various stages.
- Introduced a .gitignore file for the debugbar storage directory to prevent unnecessary files from being tracked.
2025-08-10 19:41:25 +00:00

389 lines
27 KiB
PHP

<div class="space-y-6">
<!-- Header -->
<div class="flex items-center justify-between">
<div>
<flux:heading size="xl">Job Cards</flux:heading>
<p class="text-zinc-600 dark:text-zinc-400">Manage vehicle service job cards following the 11-step workflow</p>
</div>
<flux:button href="{{ route('job-cards.create') }}" size="sm">
<flux:icon name="plus" class="size-4" />
New Job Card
</flux:button>
</div>
<!-- Statistics Cards -->
<div class="grid grid-cols-1 md:grid-cols-3 lg:grid-cols-7 gap-4">
<div class="bg-white dark:bg-zinc-800 border border-zinc-200 dark:border-zinc-700 rounded-lg p-4">
<div class="flex items-center">
<div class="flex-shrink-0">
<div class="w-8 h-8 bg-blue-100 dark:bg-blue-900 rounded-lg flex items-center justify-center">
<svg class="w-4 h-4 text-blue-600 dark:text-blue-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v10a2 2 0 002 2h8a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2"></path>
</svg>
</div>
</div>
<div class="ml-3">
<p class="text-sm font-medium text-zinc-600 dark:text-zinc-400">Total</p>
<p class="text-2xl font-bold text-zinc-900 dark:text-zinc-100">{{ $statistics['total'] }}</p>
</div>
</div>
</div>
<div class="bg-white dark:bg-zinc-800 border border-zinc-200 dark:border-zinc-700 rounded-lg p-4">
<div class="flex items-center">
<div class="flex-shrink-0">
<div class="w-8 h-8 bg-green-100 dark:bg-green-900 rounded-lg flex items-center justify-center">
<svg class="w-4 h-4 text-green-600 dark:text-green-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path>
</svg>
</div>
</div>
<div class="ml-3">
<p class="text-sm font-medium text-zinc-600 dark:text-zinc-400">Received</p>
<p class="text-2xl font-bold text-zinc-900 dark:text-zinc-100">{{ $statistics['received'] }}</p>
</div>
</div>
</div>
<div class="bg-white dark:bg-zinc-800 border border-zinc-200 dark:border-zinc-700 rounded-lg p-4">
<div class="flex items-center">
<div class="flex-shrink-0">
<div class="w-8 h-8 bg-yellow-100 dark:bg-yellow-900 rounded-lg flex items-center justify-center">
<svg class="w-4 h-4 text-yellow-600 dark:text-yellow-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</div>
</div>
<div class="ml-3">
<p class="text-sm font-medium text-zinc-600 dark:text-zinc-400">In Progress</p>
<p class="text-2xl font-bold text-zinc-900 dark:text-zinc-100">{{ $statistics['in_progress'] }}</p>
</div>
</div>
</div>
<div class="bg-white dark:bg-zinc-800 border border-zinc-200 dark:border-zinc-700 rounded-lg p-4">
<div class="flex items-center">
<div class="flex-shrink-0">
<div class="w-8 h-8 bg-orange-100 dark:bg-orange-900 rounded-lg flex items-center justify-center">
<svg class="w-4 h-4 text-orange-600 dark:text-orange-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v3m0 0v3m0-3h3m-3 0H9m12 0a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</div>
</div>
<div class="ml-3">
<p class="text-sm font-medium text-zinc-600 dark:text-zinc-400">Pending Approval</p>
<p class="text-2xl font-bold text-zinc-900 dark:text-zinc-100">{{ $statistics['pending_approval'] }}</p>
</div>
</div>
</div>
<div class="bg-white dark:bg-zinc-800 border border-zinc-200 dark:border-zinc-700 rounded-lg p-4">
<div class="flex items-center">
<div class="flex-shrink-0">
<div class="w-8 h-8 bg-emerald-100 dark:bg-emerald-900 rounded-lg flex items-center justify-center">
<svg class="w-4 h-4 text-emerald-600 dark:text-emerald-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</div>
</div>
<div class="ml-3">
<p class="text-sm font-medium text-zinc-600 dark:text-zinc-400">Completed Today</p>
<p class="text-2xl font-bold text-zinc-900 dark:text-zinc-100">{{ $statistics['completed_today'] }}</p>
</div>
</div>
</div>
<div class="bg-white dark:bg-zinc-800 border border-zinc-200 dark:border-zinc-700 rounded-lg p-4">
<div class="flex items-center">
<div class="flex-shrink-0">
<div class="w-8 h-8 bg-purple-100 dark:bg-purple-900 rounded-lg flex items-center justify-center">
<svg class="w-4 h-4 text-purple-600 dark:text-purple-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5.121 17.804A13.937 13.937 0 0112 16c2.5 0 4.847.655 6.879 1.804M15 10a3 3 0 11-6 0 3 3 0 016 0zm6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</div>
</div>
<div class="ml-3">
<p class="text-sm font-medium text-zinc-600 dark:text-zinc-400">Delivered Today</p>
<p class="text-2xl font-bold text-zinc-900 dark:text-zinc-100">{{ $statistics['delivered_today'] }}</p>
</div>
</div>
</div>
<div class="bg-white dark:bg-zinc-800 border border-zinc-200 dark:border-zinc-700 rounded-lg p-4">
<div class="flex items-center">
<div class="flex-shrink-0">
<div class="w-8 h-8 bg-red-100 dark:bg-red-900 rounded-lg flex items-center justify-center">
<svg class="w-4 h-4 text-red-600 dark:text-red-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-2.5L13.732 4c-.77-.833-1.964-.833-2.732 0L4.082 16.5c-.77.833.192 2.5 1.732 2.5z"></path>
</svg>
</div>
</div>
<div class="ml-3">
<p class="text-sm font-medium text-zinc-600 dark:text-zinc-400">Overdue</p>
<p class="text-2xl font-bold text-zinc-900 dark:text-zinc-100">{{ $statistics['overdue'] }}</p>
</div>
</div>
</div>
</div>
<!-- Enhanced Filters -->
<div class="bg-white dark:bg-zinc-800 border border-zinc-200 dark:border-zinc-700 rounded-lg p-6">
<div class="grid grid-cols-1 md:grid-cols-3 lg:grid-cols-6 gap-4">
<div>
<flux:input
wire:model.live="search"
label="Search"
placeholder="Search job cards..."
/>
</div>
<div>
<flux:select wire:model.live="statusFilter" label="Status" placeholder="All statuses">
@foreach($statusOptions as $value => $label)
<option value="{{ $value }}">{{ $label }}</option>
@endforeach
</flux:select>
</div>
<div>
<flux:select wire:model.live="branchFilter" label="Branch" placeholder="All branches">
@foreach($branchOptions as $value => $label)
<option value="{{ $value }}">{{ $label }}</option>
@endforeach
</flux:select>
</div>
<div>
<flux:select wire:model.live="priorityFilter" label="Priority" placeholder="All priorities">
@foreach($priorityOptions as $value => $label)
<option value="{{ $value }}">{{ $label }}</option>
@endforeach
</flux:select>
</div>
<div>
<flux:select wire:model.live="serviceAdvisorFilter" label="Service Advisor" placeholder="All advisors">
@foreach($serviceAdvisorOptions as $value => $label)
<option value="{{ $value }}">{{ $label }}</option>
@endforeach
</flux:select>
</div>
<div>
<flux:select wire:model.live="dateRange" label="Date Range" placeholder="All dates">
@foreach($dateRangeOptions as $value => $label)
<option value="{{ $value }}">{{ $label }}</option>
@endforeach
</flux:select>
</div>
</div>
</div>
<!-- Action Buttons -->
<div class="flex justify-end space-x-3">
<flux:button wire:click="refreshData" variant="ghost" size="sm">
<flux:icon name="arrow-path" class="size-4" />
Refresh
</flux:button>
<flux:button wire:click="clearFilters" variant="ghost" size="sm">
<flux:icon name="x-mark" class="size-4" />
Clear Filters
</flux:button>
</div>
<!-- Bulk Actions -->
@if(is_array($selectedJobCards) && count($selectedJobCards) > 0)
<div class="bg-blue-50 dark:bg-blue-900 border border-blue-200 dark:border-blue-700 rounded-lg p-4">
<div class="flex items-center justify-between">
<div class="flex items-center">
<span class="text-blue-700 dark:text-blue-300 font-medium">{{ is_array($selectedJobCards) ? count($selectedJobCards) : 0 }} job card(s) selected</span>
</div>
<div class="flex items-center space-x-2">
<select wire:model="bulkAction" class="px-3 py-2 border border-blue-300 dark:border-blue-600 rounded-lg bg-white dark:bg-blue-800 text-blue-900 dark:text-blue-100 focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
<option value="">Select action...</option>
<option value="export_csv">Export to CSV</option>
</select>
<button wire:click="processBulkAction" class="px-4 py-2 bg-blue-600 hover:bg-blue-700 text-white font-medium rounded-lg transition-colors">
Apply
</button>
<button wire:click="$set('selectedJobCards', []); $set('selectAll', false)" class="px-4 py-2 bg-zinc-600 hover:bg-zinc-700 text-white font-medium rounded-lg transition-colors">
Clear
</button>
</div>
</div>
</div>
@endif
<!-- Job Cards List -->
<div class="bg-white dark:bg-zinc-800 border border-zinc-200 dark:border-zinc-700 rounded-lg">
@if($jobCards->count() > 0)
<div class="overflow-x-auto">
<table class="w-full divide-y divide-zinc-200 dark:divide-zinc-700">
<thead class="bg-zinc-50 dark:bg-zinc-900">
<tr>
<th class="px-6 py-3 text-left">
<input type="checkbox" wire:model.live="selectAll" class="rounded border-zinc-300 dark:border-zinc-600 text-blue-600 focus:ring-blue-500">
</th>
<th class="px-6 py-3 text-left text-xs font-medium text-zinc-500 dark:text-zinc-400 uppercase tracking-wider cursor-pointer" wire:click="sortBy('job_card_number')">
Job Card #
@if($sortBy === 'job_card_number')
<span class="ml-1">{{ $sortDirection === 'asc' ? '↑' : '↓' }}</span>
@endif
</th>
<th class="px-6 py-3 text-left text-xs font-medium text-zinc-500 dark:text-zinc-400 uppercase tracking-wider">Customer</th>
<th class="px-6 py-3 text-left text-xs font-medium text-zinc-500 dark:text-zinc-400 uppercase tracking-wider">Vehicle</th>
<th class="px-6 py-3 text-left text-xs font-medium text-zinc-500 dark:text-zinc-400 uppercase tracking-wider cursor-pointer" wire:click="sortBy('status')">
Status
@if($sortBy === 'status')
<span class="ml-1">{{ $sortDirection === 'asc' ? '↑' : '↓' }}</span>
@endif
</th>
<th class="px-6 py-3 text-left text-xs font-medium text-zinc-500 dark:text-zinc-400 uppercase tracking-wider cursor-pointer" wire:click="sortBy('priority')">
Priority
@if($sortBy === 'priority')
<span class="ml-1">{{ $sortDirection === 'asc' ? '↑' : '↓' }}</span>
@endif
</th>
<th class="px-6 py-3 text-left text-xs font-medium text-zinc-500 dark:text-zinc-400 uppercase tracking-wider cursor-pointer" wire:click="sortBy('arrival_datetime')">
Arrival Date
@if($sortBy === 'arrival_datetime')
<span class="ml-1">{{ $sortDirection === 'asc' ? '↑' : '↓' }}</span>
@endif
</th>
<th class="px-6 py-3 text-left text-xs font-medium text-zinc-500 dark:text-zinc-400 uppercase tracking-wider">Service Advisor</th>
<th class="px-6 py-3 text-left text-xs font-medium text-zinc-500 dark:text-zinc-400 uppercase tracking-wider">Actions</th>
</tr>
</thead>
<tbody class="bg-white dark:bg-zinc-800 divide-y divide-zinc-200 dark:divide-zinc-700">
@foreach($jobCards as $jobCard)
<tr class="hover:bg-zinc-50 dark:hover:bg-zinc-700 transition-colors">
<td class="px-6 py-4">
<input type="checkbox" wire:model.live="selectedJobCards" value="{{ $jobCard->id }}" class="rounded border-zinc-300 dark:border-zinc-600 text-blue-600 focus:ring-blue-500">
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="flex items-center">
<div class="text-sm font-medium text-zinc-900 dark:text-zinc-100">
<a href="{{ route('job-cards.show', $jobCard) }}" class="text-blue-600 hover:text-blue-800 dark:text-blue-400 dark:hover:text-blue-200">
{{ $jobCard->job_card_number }}
</a>
</div>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-zinc-900 dark:text-zinc-100">
{{ $jobCard->customer->first_name ?? '' }} {{ $jobCard->customer->last_name ?? '' }}
</div>
<div class="text-sm text-zinc-500 dark:text-zinc-400">
{{ $jobCard->customer->phone ?? '' }}
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-zinc-900 dark:text-zinc-100">
{{ $jobCard->vehicle->year ?? '' }} {{ $jobCard->vehicle->make ?? '' }} {{ $jobCard->vehicle->model ?? '' }}
</div>
<div class="text-sm text-zinc-500 dark:text-zinc-400">
{{ $jobCard->vehicle->license_plate ?? '' }}
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
@php
$statusClasses = [
'received' => 'bg-blue-100 text-blue-800 dark:bg-blue-900 dark:text-blue-200',
'inspected' => 'bg-green-100 text-green-800 dark:bg-green-900 dark:text-green-200',
'assigned_for_diagnosis' => 'bg-yellow-100 text-yellow-800 dark:bg-yellow-900 dark:text-yellow-200',
'in_diagnosis' => 'bg-orange-100 text-orange-800 dark:bg-orange-900 dark:text-orange-200',
'estimate_sent' => 'bg-purple-100 text-purple-800 dark:bg-purple-900 dark:text-purple-200',
'approved' => 'bg-emerald-100 text-emerald-800 dark:bg-emerald-900 dark:text-emerald-200',
'parts_procurement' => 'bg-indigo-100 text-indigo-800 dark:bg-indigo-900 dark:text-indigo-200',
'in_progress' => 'bg-amber-100 text-amber-800 dark:bg-amber-900 dark:text-amber-200',
'completed' => 'bg-teal-100 text-teal-800 dark:bg-teal-900 dark:text-teal-200',
'delivered' => 'bg-gray-100 text-gray-800 dark:bg-gray-900 dark:text-gray-200',
];
$statusClass = $statusClasses[$jobCard->status] ?? 'bg-zinc-100 text-zinc-800 dark:bg-zinc-900 dark:text-zinc-200';
@endphp
<span class="inline-flex px-2 py-1 text-xs font-semibold rounded-full {{ $statusClass }}">
{{ $statusOptions[$jobCard->status] ?? $jobCard->status }}
</span>
<!-- Workflow Progress Indicator -->
@php
$workflowSteps = [
'received' => 1,
'inspected' => 2,
'assigned_for_diagnosis' => 3,
'in_diagnosis' => 4,
'estimate_sent' => 5,
'approved' => 6,
'parts_procurement' => 7,
'in_progress' => 8,
'completed' => 9,
'delivered' => 10,
];
$currentStep = $workflowSteps[$jobCard->status] ?? 1;
$progress = ($currentStep / 10) * 100;
@endphp
<div class="mt-1 w-full bg-zinc-200 dark:bg-zinc-700 rounded-full h-1">
<div class="bg-blue-600 h-1 rounded-full" style="width: {{ $progress }}%"></div>
</div>
<div class="text-xs text-zinc-500 dark:text-zinc-400 mt-1">Step {{ $currentStep }}/10</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
@php
$priorityClasses = [
'low' => 'bg-zinc-100 text-zinc-800 dark:bg-zinc-900 dark:text-zinc-200',
'medium' => 'bg-blue-100 text-blue-800 dark:bg-blue-900 dark:text-blue-200',
'high' => 'bg-orange-100 text-orange-800 dark:bg-orange-900 dark:text-orange-200',
'urgent' => 'bg-red-100 text-red-800 dark:bg-red-900 dark:text-red-200',
];
$priorityClass = $priorityClasses[$jobCard->priority] ?? 'bg-zinc-100 text-zinc-800 dark:bg-zinc-900 dark:text-zinc-200';
@endphp
<span class="inline-flex px-2 py-1 text-xs font-semibold rounded-full {{ $priorityClass }}">
{{ ucfirst($jobCard->priority) }}
</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-zinc-500 dark:text-zinc-400">
{{ $jobCard->arrival_datetime ? $jobCard->arrival_datetime->format('M j, Y g:i A') : '-' }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-zinc-500 dark:text-zinc-400">
{{ $jobCard->serviceAdvisor->name ?? '-' }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium">
<div class="flex items-center space-x-2">
<a href="{{ route('job-cards.show', $jobCard) }}" class="text-blue-600 hover:text-blue-900 dark:text-blue-400 dark:hover:text-blue-200">
View
</a>
@can('update', $jobCard)
<a href="{{ route('job-cards.edit', $jobCard) }}" class="text-zinc-600 hover:text-zinc-900 dark:text-zinc-400 dark:hover:text-zinc-200">
Edit
</a>
@endcan
<a href="{{ route('job-cards.workflow', $jobCard) }}" class="text-green-600 hover:text-green-900 dark:text-green-400 dark:hover:text-green-200">
Workflow
</a>
</div>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
<!-- Pagination -->
<div class="px-6 py-4 border-t border-zinc-200 dark:border-zinc-700">
{{ $jobCards->links() }}
</div>
@else
<div class="text-center py-12">
<svg class="mx-auto h-12 w-12 text-zinc-400 dark:text-zinc-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v10a2 2 0 002 2h8a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2"></path>
</svg>
<h3 class="mt-2 text-sm font-medium text-zinc-900 dark:text-zinc-100">No job cards found</h3>
<p class="mt-1 text-sm text-zinc-500 dark:text-zinc-400">Try adjusting your search criteria or create a new job card.</p>
<div class="mt-6">
<a href="{{ route('job-cards.create') }}" class="inline-flex items-center px-4 py-2 bg-blue-600 hover:bg-blue-700 text-white font-medium rounded-lg transition-colors">
<svg class="w-4 h-4 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4v16m8-8H4"/>
</svg>
New Job Card
</a>
</div>
</div>
@endif
</div>
</div>