@extends('layouts.app') @section('title', 'Find Counselors — CareerPath Pakistan') @push('styles') @endpush @section('content')

Expert Guidance

Find Your Career Counselor

Connect with experienced professionals who will guide you to make the right career decisions.

@if(isset($counselors) && $counselors->count())
{{ $counselors->total() }} counselors available
@foreach($counselors as $c)
{{ substr($c->user->name ?? 'C', 0, 1) }}
{{ $c->user->name ?? 'Counselor' }}
{{ $c->title ?? $c->specialization }}
@for($s=0;$s<5;$s++){{ $s < round($c->rating ?? 4) ? '★' : '☆' }}@endfor ({{ number_format($c->rating ?? 4.5, 1) }})
@if($c->expertise_areas)
@php $areas = is_array($c->expertise_areas) ? $c->expertise_areas : json_decode($c->expertise_areas, true) ?? []; @endphp @foreach(array_slice($areas, 0, 3) as $area) {{ $area }} @endforeach
@endif
Specialization {{ Str::limit($c->specialization, 28) }}
Experience {{ $c->experience_years }} years
Session Fee PKR {{ number_format($c->session_fee) }}
Status {{ $c->is_active ? '● Available' : '○ Unavailable' }}
@if($c->bio)

{{ Str::limit($c->bio, 100) }}

@endif
View Profile @if($c->is_active) Book Session @endif
@endforeach
@if($counselors->hasPages())
@if(!$counselors->onFirstPage()) ‹ Prev @endif @foreach($counselors->getUrlRange(1, $counselors->lastPage()) as $page => $url) {{ $page }} @endforeach @if($counselors->hasMorePages()) Next › @endif
@endif @else
🧑‍💼

No counselors available

Check back soon — we're adding new counselors regularly.

@endif
@endsection