@extends('layouts.app') @section('title', ($counselor->user->name ?? 'Counselor') . ' — CareerPath') @push('styles') @endpush @section('content')
Counselors {{ $counselor->user->name ?? 'Profile' }}
{{ substr($counselor->user->name ?? 'C', 0, 1) }}

{{ $counselor->user->name ?? 'Counselor' }}

{{ $counselor->title ?? $counselor->specialization }}
@for($s=0;$s<5;$s++){{ $s < round($counselor->rating ?? 4) ? '★' : '☆' }}@endfor ({{ number_format($counselor->rating ?? 4.5, 1) }})
@if($counselor->is_active) Book Session — PKR {{ number_format($counselor->session_fee) }} @else Currently Unavailable @endif
@if($counselor->bio)

About

{{ $counselor->bio }}

@endif @if($counselor->expertise_areas)

Expertise Areas

@php $areas = is_array($counselor->expertise_areas) ? $counselor->expertise_areas : json_decode($counselor->expertise_areas, true) ?? []; @endphp @foreach($areas as $area) {{ $area }} @endforeach
@endif

Book a Session

Ready to get expert career guidance? Book a 60-minute session with {{ $counselor->user->name ?? 'this counselor' }}.

@if($counselor->is_active) Book Now — PKR {{ number_format($counselor->session_fee) }}/session @else

This counselor is currently unavailable for bookings.

@endif

Quick Info

Specialization {{ $counselor->specialization }}
Experience {{ $counselor->experience_years }} years
Session Fee PKR {{ number_format($counselor->session_fee) }}
Duration 60 minutes
Status {{ $counselor->is_active ? '● Available' : '○ Unavailable' }}

Session Includes

  • 60-minute video/in-person session
  • Personalized career advice
  • Written session summary
  • Follow-up Q&A support
@endsection