@extends('layouts.contentLayoutMaster')
@php
$day_name = App\Helpers\Helpers::daysArray($day->day_of_week);
$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' => "اعدادا المواعيد"],['link' => route('appointments.offices.days.destroy', [$office->id,$day->id]), 'name' => "يوم $day_name"]],['title'=> 'تعديل']];
@endphp
@section('title', sprintf('تعديل مواعيد المكتب رقم (%s) - %s - يوم %s',$office->id,$office->office_name,App\Helpers\Helpers::daysArray($day->day_of_week)))
@section('content')
@component('components.forms.formCard',['title' => sprintf('تعديل مواعيد المكتب رقم (%s) - %s - يوم %s',$office->id,$office->office_name,$day_name)])
{!! Form::model($day, ['method' => 'PUT', 'onsubmit' => 'showLoader()','route' => ['appointments.offices.days.update', [$office,$day]]]) !!}