@extends('admin.layout.dashboard-template') @section('content')

Slot

  • Provider Category

    : {{$data->therapist->full_name}}
  • Break Time

    : {{$data->break_duration}} Minutes
  • Call duration

    : {{$data->call_duration}} Minutes

Slot Managment

@foreach(days() as $day) @php $flag=0; foreach($data->workingHours as $key=>$item){ if($day==$item->day){ $flag++; } } @endphp @if($flag==0) @else @endif @endforeach
{{$day}}
Unavailable
@foreach($data->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
@endsection