{{ 'User Contact Details' }}
{{ $contactus->username }}
{{ $contactus->email }}
@if ($contactus->role_id == 2)
{{ '+' . $contactus->get_doctor_details->phone_code . ' ' . $contactus->get_doctor_details->mobile_number }}
@elseif($contactus->role_id==3)
{{ '+' . $contactus->get_trainer_details->phone_code . ' ' . $contactus->get_trainer_details->mobile_number }}
@elseif($contactus->role_id==5)
{{ '+' . $contactus->get_patient_details->phone_code . ' ' . $contactus->get_patient_details->mobile_number }}
@else
----
@endif
@if ($contactus->role_id == 1)
{{ 'Admin' }}
@elseif($contactus->role_id==2)
{{ 'Doctor' }}
@elseif($contactus->role_id==3)
{{ 'Trainer' }}
@elseif($contactus->role_id==4)
{{ 'Frenchise' }}
@else
{{ 'Patient' }}
@endif
@if ($contactus->account_type == 1)
{{ 'Free' }}
@else
{{ 'paid' }}
@endif
@if ($contactus->status == 1)
{{ 'Active' }}
@else
{{ 'Deactive' }}
@endif
{{ date(config('app.date_format_date_time'), strtotime($contactus->created_at)) }}
@if (!Storage::disk('s3')->has('users/' . $contactus->id . '/profile_picture/' . $contactus->profile_picture) || empty($contactus->profile_picture))
@else
@endif
@else