@extends('layouts.website.website') @section('content')
Time Schedule
@foreach ($schedules as $item) @endforeach
# Doctor Days Duration Time Weekday Options
{{ $item->id }} {{ $item->doctor_id }}
    @foreach ($item->time_schedule as $time)
  • {{ $time->day_name }}
  • @endforeach
    @foreach ($item->time_schedule as $time)
  • {{ Carbon\Carbon::parse($time->start_time)->format('h:i a') }} to {{ Carbon\Carbon::parse($time->end_time)->format('h:i a') }}
  • @endforeach
    @foreach ($item->time_schedule as $time)
  • {{ Carbon\Carbon::parse($time->duty_duration)->format('h:i') }} m
  • @endforeach
{{ $item->weekday }} Delete
@endsection