@extends('admin.layout.dashboard-template')
@section('content')
-
Provider Category
:
{{$data->therapist->full_name}}
-
Break Time
:
{{$data->break_duration}} Minutes
-
Call duration
:
{{$data->call_duration}} Minutes
@foreach(days() as $day)
| {{$day}} |
@php
$flag=0;
foreach($data->workingHours as $key=>$item){
if($day==$item->day){
$flag++;
}
}
@endphp
@if($flag==0)
| Unavailable |
@else
| Start Time |
End Time |
Slots |
@foreach($data->workingHours as $key=>$item)
@if($day==$item->day)
|
{{$item->start_time}}
|
{{ $item->end_time}}
|
View SlotsView Slots |
| CALL METHOD |
SLOTS |
@foreach($item->slotShedule as $s)
| {{$s->callMethod->name}} |
@php
$i=0;
@endphp
@foreach(json_decode($s->slots) as $x)
@endforeach
|
@endforeach
|
@else
@continue
@endif
@endforeach
|
@endif
@endforeach
@endsection