@extends('layouts.contentLayoutMaster') @php $breadcrumbs = [[['link' => route('appointments.sections.index'), 'name' => "اقسام المقابلات"],['link' => route('appointments.offices.index'), 'name' => "مكاتب المقابلات"],['link' => route('appointments.offices.edit',$office), 'name' => " $office->office_name"],['link' => route('appointments.offices.days.index',$office), 'name' => "اعدادا المواعيد"]],['title'=> 'اعدادات المواعيد']]; @endphp @section('title', sprintf('اعدادات المواعيد المكتب رقم (%s) - %s',$office->id, $office->office_name)) @section('content') {{ sprintf('اعدادات المواعيد المكتب رقم (%s) - %s',$office->id, $office->office_name) }} من خلال هذة الشاشة يمكن اعدادات مواعيد العمل الخاصة بالمكتب خلال ايام الأسبوع اضافة يوم كود اليوم من إلى الحالة الاجراءات @foreach ($schedules as $schedule) {{ $schedule->id }} {{ App\Models\officeSchedule::daysArray($schedule->day_of_week) }} {{ Carbon\Carbon::parse($schedule->time_from)->format('H:m') }} {{ Carbon\Carbon::parse($schedule->time_to)->format('h:i') }} {{ $schedule->active ? 'فعال' : 'غير مفعل' }} @can('appointments-list') @endcan @can('appointments-edit') @endcan @can('appointments-delete') @endcan @endforeach @endsection