@extends('layouts.app') @section('title') {{ __('messages.appointment.appointment_calendar') }} @endsection @section('header_toolbar')

@yield('title')

{{ __('messages.common.back') }}
@endsection @section('content')
@include('layouts.errors')
{{ Form::hidden('todayText', __('messages.appointment.today'), ['id' => 'todayText']) }} {{ Form::hidden('weekText', __('messages.appointment.week'), ['id' => 'weekText']) }} {{ Form::hidden('monthText', __('messages.appointment.month'), ['id' => 'monthText']) }} {{ Form::hidden('dayText', __('messages.appointment.day'), ['id' => 'dayText']) }} {{ Form::hidden('doctorScheduleList', url('doctor-schedule-list'), ['id' => 'doctorScheduleList']) }} {{ Form::hidden('calenderAppointmentSaveUrl', route('appointments.store'), ['id' => 'calenderAppointmentSaveUrl']) }} {{ Form::hidden('calenderIndexPage', route('appointment-calendars.index'), ['id' => 'calenderIndexPage']) }} {{ Form::hidden('getBookingSlot', route('get.booking.slot'), ['id' => 'getBookingSlot']) }} {{ Form::hidden('userRole', Auth::user()->hasRole('Doctor'), ['id' => 'userRole']) }} {{ Form::hidden('isCreate', true, ['class' => 'isCreate']) }} {{ Form::hidden('isDoctor', (Auth::user()->hasRole('Doctor'))? 1 :0 , ['id' => 'isDoctor']) }} {{ Form::hidden('getLanguage',getCurrentLoginUserLanguageName(), ['class' => 'getLanguage']) }}
{{-- Appointment show modal --}} @include('appointment_calendars.add_appointment_modal') @include('appointments.templates.appointment_slot') @endsection {{-- assets/js/appointment_calendar/appointment_calendar.js --}}