@extends('layouts.app') @section('title', 'Compare Careers — CareerPath') @push('styles') @endpush @section('content')

⚖️ Compare Careers

Compare two career fields side by side — salary, difficulty, duration, and more.

Choose Careers to Compare

VS
@if(count($careers) === 2) @php [$c1, $c2] = $careers->values()->all(); @endphp
Criteria
{{ $c1->icon ?? '💼' }}
{{ $c1->name }}
{{ $c1->category }}
{{ $c2->icon ?? '💼' }}
{{ $c2->name }}
{{ $c2->category }}
Min Salary PKR {{ $c1->min_salary_pkr ?? 'N/A' }}/mo PKR {{ $c2->min_salary_pkr ?? 'N/A' }}/mo
Max Salary PKR {{ $c1->max_salary_pkr ?? 'N/A' }}/mo PKR {{ $c2->max_salary_pkr ?? 'N/A' }}/mo
Difficulty {{ ucfirst($c1->difficulty ?? 'Moderate') }} {{ ucfirst($c2->difficulty ?? 'Moderate') }}
Duration {{ $c1->years_to_complete ?? 4 }} years {{ $c2->years_to_complete ?? 4 }} years
Category {{ $c1->category }} {{ $c2->category }}
Popularity {{ $c1->popularity_score ?? 0 }} views {{ $c1->popularity_score >= $c2->popularity_score ? '🏆' : '' }} {{ $c2->popularity_score ?? 0 }} views {{ $c2->popularity_score > $c1->popularity_score ? '🏆' : '' }}
Overview {{ Str::limit($c1->description, 130) }} {{ Str::limit($c2->description, 130) }}
Action View Details View Details

Still unsure? Let our experts help you decide.

Book a Counselor
@else
⚖️

Select two careers to compare

Use the dropdowns above to pick two career fields

@endif
@endsection