@extends('layouts.main') @section('content')
| #ID | Photo | Consultant | Phone | Status | Action | |
|---|---|---|---|---|---|---|
| #{{ $counsellor->id }} |
|
{{ $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')
@endcan
|
No Doctors FoundNo counsellor data available right now. |
||||||