@extends('layouts.main') @section('content')

👨‍⚕️ Consultant Management

@can('doctor_create') @endcan
@forelse($counsellors as $counsellor) @php $name = $counsellor->name ?? ($counsellor->first_name . ' ' . $counsellor->last_name); // Default User Image $defaultImage = 'https://cdn-icons-png.flaticon.com/512/149/149071.png'; // Final Image $image = !empty($counsellor->display_image_url) ? $counsellor->display_image_url : $defaultImage; @endphp @empty @endforelse
#ID Photo Consultant Email Phone Status Action
#{{ $counsellor->id }} {{ $name }}
{{ $counsellor->first_name }} {{ $counsellor->last_name }}
{{ $counsellor->qualification ?? 'Consultant' }}
{{ $counsellor->email }} {{ $counsellor->phone_number ?? '-' }} @if ($counsellor->status) Active @else Inactive @endif
@can('doctor_edit') @endcan @can('doctor_delete')
@csrf @method('DELETE')
@endcan
No Doctors Found

No counsellor data available right now.

@endsection