@extends('layouts.app') @section('title', 'Manage Doctors') @section('content')
| Name @if($currentSort === 'name') @else @endif | Practice Number @if($currentSort === 'practice_number') @else @endif | Status @if($currentSort === 'status') @else @endif | Actions | |
|---|---|---|---|---|
|
@if($doctor->profile_picture_path)
@else
@endif
{{ $doctor->full_name }}
|
{{ $doctor->practice_number }} | @if($doctor->is_verified && $doctor->is_active) Active @elseif($doctor->is_verified && !$doctor->is_active) Inactive @else Pending @endif | ||
|
No doctors found matching your criteria. @if(request()->hasAny(['search', 'status'])) Clear filters @endif |
||||