@extends('admin.layout.dashboard-template') @section('content')
@php if ($data->image != NULL) { $img = asset('assets/uploads/therapist/' . $data->image); } else { if ($data->gender == 'MALE') { $img = asset('assets/img/male-avatar.jpg'); } else { $img = asset('assets/img/female-avatar.webp'); } } @endphp

{{$data->prefix}}{{ucfirst($data->full_name)}}

{{ucfirst($data->designation) }}

Employee ID : {{$data->employee_id}}
 {{$data->experience}}yrs Exp  {{count(App\Models\Appointments::where('therapist_id', $data->id)->get())}} Sessions  {{$data->language_known}}
  • Phone: {{$data->mobile}}
  • Email: {{$data->email }}
  • Birthday: {{date("d M Y ",strtotime($data->dob)) }}
  • Address: {{$data->address }}
  • Gender: {{$data->gender }}
  • Qualification: {{$data->qualification }}
  • Joining Date: {{date("d M Y ",strtotime($data->joining_date)) }}
  • Slot Setting Permission: {{Str::upper($data->slot_setting_permission) }}
@if($data->services)

Services

@foreach($data->services as $item) @php $s=App\Models\Service::where('id',$item)->pluck('service_name')->first(); @endphp {{$s }} @endforeach
@endif @if($data->specialization_and_expertise )

Specialization and Expertise

@foreach($data->specialization_and_expertise as $item) @php $s=App\Models\Specialization::where('id',$item)->pluck('tag')->first(); @endphp {{$s }} @endforeach
@endif

Address

  • Address

    {{$data->address}}
  • City

    {{$data->city}}
  • State

    {{$data->state}}
  • Country

    {{$data->country}}
  • Postal Code

    {{$data->postal_code}}

Biography

{{$data->biography}}
@if($data->personal_background)

Personal Background

{{$data->personal_background}}
@endif @if($data->research_and_publications)

Research and Publications

{{$data->research_and_publications}}
@endif @if($data->approach_and_treatment)

Approach and Treatment

{{$data->approach_and_treatment}}
@endif @if($data->philosophy_and_approach)

Philosophy and Approach

{{$data->philosophy_and_approach}}
@endif @if($data->client_focus_and_population)

Client Focus and Population

{{$data->client_focus_and_population}}
@endif @if($data->skills)

Skills

{{$data->skills}}
@endif @if($data->skills)

Skills

{{$data->skills}}
@endif @if($data->awards)

Awards

{{$data->awards}}
@endif

Experience

Education Informations

    @foreach($data->academics as $item)
  • {{$item->education}}
    {{$item->college}}
    {{$item->year}}
  • @endforeach

Additional Training

    @foreach($data->training as $item)
  • {{$item->education}}
    {{$item->college}}
    {{$item->year}}
  • @endforeach

Upcoming Appointment

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

Previous Appointment

SL.NO Action User Status Date Start Time End Time Call Type Charge
@if($slot)

Slots

Break Time: {{$slot->break_duration}}

@foreach(days() as $day) @php $flag=0; foreach($slot->workingHours as $key=>$item){ if($day==$item->day){ $flag++; } } @endphp @if($flag==0) @else @endif @endforeach
{{$day}}
Unavailable
@foreach($slot->workingHours as $key=>$item) @if($day==$item->day) @else @continue @endif @endforeach
Start Time End Time Slots
{{$item->start_time}} {{ $item->end_time}} View SlotsView Slots
@foreach($item->slotShedule as $s) @endforeach
CALL METHOD SLOTS
{{$s->callMethod->name}} @php $i=0; @endphp @foreach(json_decode($s->slots) as $x) @endforeach
@else

Slots Not set for {{$data->full_name}}

@endif

Reviews

SL.NO User Comment Star Date View
Appoinment
Deatils
@endsection