@extends('layout.main') @section('content')

Add Business Hours

@include('includes.errors') @include('includes.success')

Close


Basic Information
 
{{Form::select('MondayFromHour', $TicketHours,TicketBusinessHours::$DefaultHourFrom,array("class"=>"form-control MondayFromHour row_change small select2"))}}
{{Form::select('MondayFromType', $TicketHoursType,TicketBusinessHours::$DefaultTicketHoursTypeFrom,array("class"=>"form-control MondayFromType row_change small select2"))}}
to
{{Form::select('MondayToHour', $TicketHours,TicketBusinessHours::$DefaultHourTo,array("class"=>"form-control row_change small MondayToHour select2"))}}
{{Form::select('MondayToType', $TicketHoursType,TicketBusinessHours::$DefaultTicketHoursTypeTo,array("class"=>"form-control small MondayToType row_change select2"))}}
 
{{Form::select('TuesdayFromHour', $TicketHours,TicketBusinessHours::$DefaultHourFrom,array("class"=>"form-control TuesdayFromHour small row_change select2"))}}
{{Form::select('TuesdayFromType', $TicketHoursType,TicketBusinessHours::$DefaultTicketHoursTypeFrom,array("class"=>"form-control TuesdayFromType row_change small select2"))}}
to
{{Form::select('TuesdayToHour', $TicketHours,TicketBusinessHours::$DefaultHourTo,array("class"=>"form-control TuesdayToHour small row_change select2"))}}
{{Form::select('TuesdayToType', $TicketHoursType,TicketBusinessHours::$DefaultTicketHoursTypeTo,array("class"=>"form-control row_change TuesdayToType small select2"))}}
 
{{Form::select('WednesdayFromHour', $TicketHours,TicketBusinessHours::$DefaultHourFrom,array("class"=>"form-control WednesdayFromHour small row_change select2"))}}
{{Form::select('WednesdayFromType', $TicketHoursType,TicketBusinessHours::$DefaultTicketHoursTypeFrom,array("class"=>"form-control row_change WednesdayFromType small select2"))}}
to
{{Form::select('WednesdayToHour', $TicketHours,TicketBusinessHours::$DefaultHourTo,array("class"=>"form-control WednesdayToHour row_change small select2"))}}
{{Form::select('WednesdayToType', $TicketHoursType,TicketBusinessHours::$DefaultTicketHoursTypeTo,array("class"=>"form-control row_change WednesdayToType small select2"))}}
 
{{Form::select('ThursdayFromHour', $TicketHours,TicketBusinessHours::$DefaultHourFrom,array("class"=>"form-control ThursdayFromHour row_change small select2"))}}
{{Form::select('ThursdayFromType', $TicketHoursType,TicketBusinessHours::$DefaultTicketHoursTypeFrom,array("class"=>"form-control row_change ThursdayFromType small select2"))}}
to
{{Form::select('ThursdayToHour', $TicketHours,TicketBusinessHours::$DefaultHourTo,array("class"=>"form-control ThursdayToHour row_change small select2"))}}
{{Form::select('ThursdayToType', $TicketHoursType,TicketBusinessHours::$DefaultTicketHoursTypeTo,array("class"=>"form-control row_change ThursdayToType small select2"))}}
 
{{Form::select('FridayFromHour', $TicketHours,TicketBusinessHours::$DefaultHourFrom,array("class"=>"form-control FridayFromHour row_change small select2"))}}
{{Form::select('FridayFromType', $TicketHoursType,TicketBusinessHours::$DefaultTicketHoursTypeFrom,array("class"=>"form-control row_change FridayFromType small select2"))}}
to
{{Form::select('FridayToHour', $TicketHours,TicketBusinessHours::$DefaultHourTo,array("class"=>"form-control FridayToHour small row_change select2"))}}
{{Form::select('FridayToType', $TicketHoursType,TicketBusinessHours::$DefaultTicketHoursTypeTo,array("class"=>"form-control small row_change FridayToType select2"))}}
 
{{Form::select('SaturdayFromHour', $TicketHours,TicketBusinessHours::$DefaultHourFrom,array("class"=>"form-control SaturdayFromHour row_change small select2","disabled"=>"disabled"))}}
{{Form::select('SaturdayFromType', $TicketHoursType,TicketBusinessHours::$DefaultTicketHoursTypeFrom,array("class"=>"form-control row_change SaturdayFromType small select2","disabled"=>"disabled"))}}
to
{{Form::select('SaturdayToHour', $TicketHours,TicketBusinessHours::$DefaultHourTo,array("class"=>"form-control SaturdayToHour row_change small select2","disabled"=>"disabled"))}}
{{Form::select('SaturdayToType', $TicketHoursType,TicketBusinessHours::$DefaultTicketHoursTypeTo,array("class"=>"form-control row_change SaturdayToType small select2","disabled"=>"disabled"))}}
 
{{Form::select('SundayFromHour', $TicketHours,TicketBusinessHours::$DefaultHourFrom,array("class"=>"form-control SundayFromHour row_change small select2","disabled"=>"disabled"))}}
{{Form::select('SundayFromType', $TicketHoursType,TicketBusinessHours::$DefaultTicketHoursTypeFrom,array("class"=>"form-control row_change SundayFromType small select2","disabled"=>"disabled"))}}
to
{{Form::select('SundayToHour', $TicketHours,TicketBusinessHours::$DefaultHourTo,array("class"=>"form-control SundayToHour small row_change select2","disabled"=>"disabled"))}}
{{Form::select('SundayToType', $TicketHoursType,TicketBusinessHours::$DefaultTicketHoursTypeTo,array("class"=>"form-control small row_change SundayToType select2","disabled"=>"disabled"))}}
Yearly Holiday Information ?
{{Form::select('HolidaysMonths', TicketBusinessHours::$HolidaysMonths,'',array("class"=>"form-control HolidaysMonths small select2"))}}
{{Form::select('HolidaysDays', TicketBusinessHours::$HolidaysDays,'',array("class"=>"form-control HolidaysDays small select2"))}}
@stop