@extends('layouts.admin') @section('title', 'Doctor Details') @section('content')
{{-- Title --}}
Doctor: {{ $user->name }}

Email: {{ $user->email }}

Specialization: {{ $user->doctorProfile->specialization ?? '-' }}

Phone: {{ $user->doctorProfile->phone ?? '-' }}

Fee: {{ $user->doctorProfile->consultation_fee ?? '-' }}

Bio: {{ $user->doctorProfile->bio ?? '-' }}

Approved: {{ $user->is_approved ? 'Yes' : 'No' }}

@if(!$user->is_approved)
@csrf
@else
@csrf
@endif
@endsection