@extends('admin.layout.dashboard-template') @section('content')
@php if ($user->image != NULL) { $img = asset('assets/uploads/user/' . $user->image); } else { if ($user->Gender == 'MALE' || $user->Gender == 'M') { $img = asset('assets/img/male.png'); } elseif ($user->Gender == 'FEMALE' || $user->Gender == 'F') { $img = asset('assets/img/female.png'); } else { $img = asset('assets/img/other.png'); } } @endphp
@if($user->First_Name)

{{$user->First_Name}} {{ucfirst($user->Last_Name)}}

PID : {{$user->Patient_Identification_Number }} @endif
@if($user->UserId) USERID : {{$user->UserId }} @endif
@if($user-> Reg_Date) REGISTRATION DATE : {{date("d M Y H:m:s",strtotime($user->Reg_Date)) }} @endif @if($user->walletBalance)

@else

@endif
  • Phone: @if($user->SMS) {{$user->SMS}} @else {{$user->phone}} @endif
  • @if($user->alternative_phone!=NULL)
  • Alternative Phone: {{$user->alternative_phone}}
  • @endif
  • Email: @if($user->Email) {{$user->Email }} @endif
  • @if($user->alternative_email!=NULL)
  • Alternative Email: {{$user->alternative_email}}
  • @endif
  • Birthday: @if($user->DOB) {{date("d M Y ",strtotime($user->DOB)) }} @endif
  • Gender: @if($user->Gender) {{$user->Gender }} @endif
  • Country: @if($user->country) {{$user->country }} @endif
  • Patient Status: @if($user->country) {{$user->Patient_Status }} @endif

Upcoming Appointment

SL.NO Action Provider Status Start Date End Date Time Call Type Charge

Previous Appointment

SL.NO Action Provider Status Appoinment Date Start Time End Time Call Type Charge

Wallet Transactions

SL.NO Amount Point Date Wallet Type Transaction Type Balance

Reviews

SL.NO Therapist Comment Star Date View
Appoinment
Deatils

Assessment

SL.NO Title Score Status Date View
@endsection