@extends('layout.admin_layout') @section('title', 'Unapproved Doctor Details') @section('body') @section('header', 'Unapproved Doctor Details') @section('badge') @endsection
{{ csrf_field() }}

Profile Image:
@if($doctor->profile_image!=='') alt text here @else alt text here @endif

Doctor Id: DOC00{{$doctor->id}}

Name: {{$doctor->name}} {{$doctor->last_name}}

Email: {{$doctor->email}}

Phone: @if (str_contains($doctor->code, '+')) @else + @endif{{$doctor->code}} {{$doctor->phone}}

Gender: {{$doctor->sex}}

Address: {{$doctor->address}}

Skill Set / Specialization: {{doctors_speciality_m($doctor->id)}}

DEA: {{$doctor->dea}}

License: {{$doctor->license}}

NPI: {{$doctor->npi}}

@if($doctor->fee_per_consultation!='')

Video consultation fees: $ {{ $fee[0]}}

Audio consultation fees: $ {{ $fee[1]}}

Chat consultation fees: $ {{ $fee[2]}}

@endif

State Practitional License:
@if($doctor->certificate_practice!='') @if($exp[1]=='pdf') @else @endif @else @endif

Registration No of Practitional License: {{$doctor->reg_no_p}}

About: {{$doctor->about}}

Qualification
@if($count==0) @else @foreach($s_results as $row) {{$row}}

@endforeach @endif

Certificates
@if($count==0) @else @foreach($s_results as $row) @if($ext[2]==="pdf") @else @endif

@endforeach @endif

Registration No
@if($count==0) @else @foreach($s_results as $row) {{$row}}

@endforeach @endif

@endsection