@extends('layouts.app') @section('title', $dentist->exists ? __('Edit dentist') : __('Add dentist')) @php $days = [0 => __('Sunday'), 1 => __('Monday'), 2 => __('Tuesday'), 3 => __('Wednesday'), 4 => __('Thursday'), 5 => __('Friday'), 6 => __('Saturday')]; $existing = $dentist->exists ? $dentist->schedules->groupBy('weekday')->map( fn ($rows) => $rows->map(fn ($r) => substr($r->start_time, 0, 5).'-'.substr($r->end_time, 0, 5))->values() )->toArray() : []; @endphp @section('content')