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

@yield('title')

@endsection @section('content')
{{Form::hidden('book_calender', \App\Models\Appointment::BOOKED,['id' => 'bookCalenderConst'])}} {{Form::hidden('check_in_calender', \App\Models\Appointment::CHECK_IN,['id' => 'checkInCalenderConst'])}} {{Form::hidden('checkOut_calender', \App\Models\Appointment::CHECK_OUT,['id' => 'checkOutCalenderConst'])}} {{Form::hidden('cancel_calender', \App\Models\Appointment::CANCELLED,['id' => 'cancelCalenderConst'])}}

{{__('messages.appointment.calendar')}}

{{__('messages.common.'.strtolower(\App\Models\Appointment::STATUS[1]))}}
{{__('messages.common.'.strtolower(\App\Models\Appointment::STATUS[2]))}}
{{__('messages.common.'.strtolower(\App\Models\Appointment::STATUS[3]))}}
{{__('messages.common.'.strtolower(\App\Models\Appointment::STATUS[4]))}}
@include('appointments.models.appointment-model') @endsection