@extends('layouts.admin') @section('title', 'Counselors') @section('page-title', 'Counselors') @section('content')

Counselors

{{ $counselors->count() }} counselors registered

@forelse($counselors as $c)
@csrf @method('DELETE')
{{ substr($c->user->name??'C',0,1) }}
{{ $c->user->name ?? '—' }}
{{ $c->user->email ?? '' }}
Specialization {{ Str::limit($c->specialization,30) }}
Experience {{ $c->experience_years }} yrs
Fee/Session PKR {{ number_format($c->session_fee) }}
Rating ★ {{ number_format($c->rating,1) }}
Status {{ $c->is_active ? 'Active' : 'Inactive' }}
@empty
No counselors yet

Add your first counselor to get started

@endforelse
@endsection