Car-Repairs-Shop/resources/views/livewire/reports/workflow-analytics.blade.php
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

254 lines
14 KiB
PHP

{{-- Management Workflow Analytics Dashboard --}}
<div class="space-y-6">
<div class="flex items-center justify-between">
<h1 class="text-3xl font-bold text-gray-900">Workflow Analytics</h1>
<div class="flex items-center space-x-4">
<select wire:model.live="selectedBranch" class="rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500">
<option value="">All Branches</option>
@foreach($branches as $branch)
<option value="{{ $branch }}">{{ $branch }}</option>
@endforeach
</select>
<select wire:model.live="selectedPeriod" class="rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500">
<option value="7">Last 7 Days</option>
<option value="30">Last 30 Days</option>
<option value="90">Last 90 Days</option>
<option value="365">Last Year</option>
</select>
</div>
</div>
{{-- Key Performance Indicators --}}
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<div class="bg-white rounded-lg shadow p-6">
<div class="flex items-center">
<div class="flex-shrink-0 bg-blue-500 rounded-md p-3">
<svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8c1.11 0 2.08.402 2.599 1M12 8V7m0 1v8m0 0v1m0-1c-1.11 0-2.08-.402-2.599-1"/>
</svg>
</div>
<div class="ml-5 w-0 flex-1">
<dl>
<dt class="text-sm font-medium text-gray-500 truncate">Total Revenue</dt>
<dd class="text-2xl font-semibold text-gray-900">${{ number_format($totalRevenue, 2) }}</dd>
</dl>
</div>
</div>
</div>
<div class="bg-white rounded-lg shadow p-6">
<div class="flex items-center">
<div class="flex-shrink-0 bg-green-500 rounded-md p-3">
<svg class="w-6 h-6 text-white" 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"/>
</svg>
</div>
<div class="ml-5 w-0 flex-1">
<dl>
<dt class="text-sm font-medium text-gray-500 truncate">Completed Jobs</dt>
<dd class="text-2xl font-semibold text-gray-900">{{ $completedJobs }}</dd>
</dl>
</div>
</div>
</div>
<div class="bg-white rounded-lg shadow p-6">
<div class="flex items-center">
<div class="flex-shrink-0 bg-yellow-500 rounded-md p-3">
<svg class="w-6 h-6 text-white" 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"/>
</svg>
</div>
<div class="ml-5 w-0 flex-1">
<dl>
<dt class="text-sm font-medium text-gray-500 truncate">Avg. Turnaround</dt>
<dd class="text-2xl font-semibold text-gray-900">{{ $averageTurnaround }} days</dd>
</dl>
</div>
</div>
</div>
<div class="bg-white rounded-lg shadow p-6">
<div class="flex items-center">
<div class="flex-shrink-0 bg-red-500 rounded-md p-3">
<svg class="w-6 h-6 text-white" 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 0L3.732 16.5c-.77.833.192 2.5 1.732 2.5z"/>
</svg>
</div>
<div class="ml-5 w-0 flex-1">
<dl>
<dt class="text-sm font-medium text-gray-500 truncate">Quality Alerts</dt>
<dd class="text-2xl font-semibold text-gray-900">{{ $qualityAlerts }}</dd>
</dl>
</div>
</div>
</div>
</div>
{{-- Charts and Analytics --}}
<div class="grid grid-cols-1 lg:grid-cols-2 gap-6">
{{-- Revenue by Branch --}}
<div class="bg-white rounded-lg shadow p-6">
<h3 class="text-lg font-medium text-gray-900 mb-4">Revenue by Branch</h3>
<div class="space-y-3">
@foreach($revenueByBranch as $branch => $revenue)
<div class="flex items-center justify-between">
<span class="text-sm font-medium text-gray-600">{{ $branch }}</span>
<span class="text-sm text-gray-900">${{ number_format($revenue, 2) }}</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-blue-600 h-2 rounded-full" style="width: {{ ($revenue / max($revenueByBranch)) * 100 }}%"></div>
</div>
@endforeach
</div>
</div>
{{-- Labor Utilization --}}
<div class="bg-white rounded-lg shadow p-6">
<h3 class="text-lg font-medium text-gray-900 mb-4">Labor Utilization</h3>
<div class="space-y-4">
@foreach($laborUtilization as $technician => $hours)
<div class="flex items-center justify-between">
<div class="flex-1">
<div class="flex items-center justify-between mb-1">
<span class="text-sm font-medium text-gray-600">{{ $technician }}</span>
<span class="text-sm text-gray-900">{{ $hours['billable'] }}/{{ $hours['total'] }}h</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-green-600 h-2 rounded-full" style="width: {{ ($hours['billable'] / $hours['total']) * 100 }}%"></div>
</div>
</div>
</div>
@endforeach
</div>
</div>
</div>
{{-- Workflow Status Distribution --}}
<div class="bg-white rounded-lg shadow p-6">
<h3 class="text-lg font-medium text-gray-900 mb-4">Current Workflow Status Distribution</h3>
<div class="grid grid-cols-1 md:grid-cols-3 lg:grid-cols-4 gap-4">
@foreach($workflowDistribution as $status => $count)
<div class="bg-gray-50 rounded-lg p-4">
<div class="text-center">
<div class="text-2xl font-bold text-gray-900">{{ $count }}</div>
<div class="text-sm text-gray-600 mt-1">{{ str_replace('_', ' ', ucwords($status, '_')) }}</div>
</div>
</div>
@endforeach
</div>
</div>
{{-- Approval Trends --}}
<div class="grid grid-cols-1 lg:grid-cols-2 gap-6">
<div class="bg-white rounded-lg shadow p-6">
<h3 class="text-lg font-medium text-gray-900 mb-4">Estimate Approval Trends</h3>
<div class="space-y-4">
<div class="flex items-center justify-between p-3 bg-green-50 rounded-lg">
<span class="text-sm font-medium text-green-800">Approved</span>
<span class="text-lg font-bold text-green-900">{{ $approvalTrends['approved'] }}%</span>
</div>
<div class="flex items-center justify-between p-3 bg-yellow-50 rounded-lg">
<span class="text-sm font-medium text-yellow-800">Pending</span>
<span class="text-lg font-bold text-yellow-900">{{ $approvalTrends['pending'] }}%</span>
</div>
<div class="flex items-center justify-between p-3 bg-red-50 rounded-lg">
<span class="text-sm font-medium text-red-800">Declined</span>
<span class="text-lg font-bold text-red-900">{{ $approvalTrends['declined'] }}%</span>
</div>
</div>
</div>
{{-- Parts Usage Summary --}}
<div class="bg-white rounded-lg shadow p-6">
<h3 class="text-lg font-medium text-gray-900 mb-4">Top Parts Usage</h3>
<div class="space-y-3">
@foreach($partsUsage as $part)
<div class="flex items-center justify-between">
<div class="flex-1">
<div class="text-sm font-medium text-gray-900">{{ $part['name'] }}</div>
<div class="text-sm text-gray-500">{{ $part['category'] }}</div>
</div>
<div class="text-right">
<div class="text-sm font-medium text-gray-900">{{ $part['quantity'] }} used</div>
<div class="text-sm text-gray-500">${{ number_format($part['value'], 2) }}</div>
</div>
</div>
@endforeach
</div>
</div>
</div>
{{-- Recent Quality Issues --}}
@if(!empty($recentQualityIssues))
<div class="bg-white rounded-lg shadow p-6">
<h3 class="text-lg font-medium text-gray-900 mb-4">Recent Quality Issues</h3>
<div class="overflow-hidden shadow ring-1 ring-black ring-opacity-5 md:rounded-lg">
<table class="min-w-full divide-y divide-gray-300">
<thead class="bg-gray-50">
<tr>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Job Card</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Issue Type</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Description</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Date</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Status</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
@foreach($recentQualityIssues as $issue)
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">
{{ $issue['job_card_number'] }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
{{ $issue['type'] }}
</td>
<td class="px-6 py-4 text-sm text-gray-500">
{{ $issue['description'] }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
{{ $issue['date'] }}
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="inline-flex px-2 py-1 text-xs font-semibold rounded-full
{{ $issue['status'] === 'resolved' ? 'bg-green-100 text-green-800' : 'bg-red-100 text-red-800' }}">
{{ ucfirst($issue['status']) }}
</span>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
@endif
{{-- Export Actions --}}
<div class="bg-white rounded-lg shadow p-6">
<h3 class="text-lg font-medium text-gray-900 mb-4">Export Reports</h3>
<div class="flex flex-wrap gap-4">
<button wire:click="exportWorkflowReport"
class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
<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 10v6m0 0l-3-3m3 3l3-3m2 8H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"/>
</svg>
Workflow Summary
</button>
<button wire:click="exportLaborReport"
class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md text-white bg-green-600 hover:bg-green-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-green-500">
<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 10v6m0 0l-3-3m3 3l3-3m2 8H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"/>
</svg>
Labor Utilization
</button>
<button wire:click="exportQualityReport"
class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md text-white bg-red-600 hover:bg-red-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500">
<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 10v6m0 0l-3-3m3 3l3-3m2 8H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"/>
</svg>
Quality Metrics
</button>
</div>
</div>
</div>