{{-- Score Adjustment Form --}} {{ $this->form }} @if ($driver_id)
Simulate Impact Apply Adjustment
@endif
{{-- Simulation Result --}} @if ($simulationResult)

Current Score

{{ number_format($simulationResult['current_score'], 0) }}

Simulated Score

{{ number_format($simulationResult['simulated_score'], 0) }}

Delta

{{ $simulationResult['delta'] >= 0 ? '+' : '' }}{{ number_format($simulationResult['delta'], 0) }}

@if(isset($simulationResult['waitlist_impact']))

Waitlist Impact

{{ $simulationResult['waitlist_impact'] }}

@endif
@if(isset($simulationResult['breakdown']))

Score Breakdown

@foreach($simulationResult['breakdown'] as $component => $value) {{ ucwords(str_replace('_', ' ', $component)) }}: {{ $value }} @endforeach
@endif
@endif {{-- Current driver stats if one is selected --}} @if ($selectedDriver)

Contribution Score

{{ number_format($selectedDriver->contribution_score, 0) }}

Waitlist Position

{{ $selectedDriver->waitlist_position ?? '—' }}

Onboarding Status

{{ $selectedDriver->onboarding_status ?? '—' }}

Covenant Signed

{{ $selectedDriver->covenant_acknowledged ? '✅ Yes' : '⚠️ No' }}

Relief Hours

{{ $selectedDriver->total_relief_shift_hours }} hrs

Buffer Fleet Days

{{ $selectedDriver->total_buffer_fleet_days }} days

Referrals

{{ $selectedDriver->total_referrals_completed }}

Seniority

{{ $selectedDriver->getWaitlistSeniorityDays() }} days

@endif