@extends($route['layout']) @section('title', '| Holiday Setting') @section('content')
| Day No |
Date | Holiday Type | Description |
|---|---|---|---|
| {{$startDate->format('F')}} | |||
| {{$dayNo}} | {!! Form::hidden('day[]',$dayNo) !!} {!! Form::checkbox('dayCheckBox[]', $dayNo, true,['weekDay'=>$startDate->dayOfWeek,'date'=>$startDate->format('Y-m-d'),'class'=>'day', 'id'=>'weeklyHolidayCheckBox']) !!} {!! Form::label('day',$startDate->format('d-m-Y').','.$startDate->format('l') , ['class' => 'control-label']) !!} | {!! Form::hidden('weeklyHolidayText[]','false',['class'=>'weeklyHolidayText']) !!} {!! Form::hidden('govHolidayText[]','false',['class'=>'govHolidayText']) !!} | {!! Form::hidden('descriptionText[]',null,['class'=>'descriptionText']) !!} |
| {!! Form::checkbox('friday', null, false,['class'=>'weekDay','weekDayNo'=>5]) !!} {!! Form::label('friday','Mark all Friday' , ['class' => 'control-label']) !!} | {!! Form::checkbox('saturday', null, false,['class'=>'weekDay','weekDayNo'=>6]) !!} {!! Form::label('saturday','Mark all Saturday' , ['class' => 'control-label']) !!} |
| {!! Form::checkbox('sunday', null, false,['class'=>'weekDay','weekDayNo'=>0]) !!} {!! Form::label('sunday','Mark all Sunday' , ['class' => 'control-label']) !!} | {!! Form::checkbox('monday', null, false,['class'=>'weekDay','weekDayNo'=>1]) !!} {!! Form::label('monday','Mark all Monday' , ['class' => 'control-label']) !!} |
| {!! Form::checkbox('tuesday', null, false,['class'=>'weekDay','weekDayNo'=>2]) !!} {!! Form::label('tuesday','Mark all Tuesday' , ['class' => 'control-label']) !!} | {!! Form::checkbox('wednesday', null, false,['class'=>'weekDay','weekDayNo'=>3]) !!} {!! Form::label('wednesday','Mark all Wednesday' , ['class' => 'control-label']) !!} |
| {!! Form::checkbox('thursday', null, false,['class'=>'weekDay','weekDayNo'=>4]) !!} {!! Form::label('thursday','Mark all Thursday' , ['class' => 'control-label']) !!} |