{{ Form::label('from_time[]', __('message.from_time'), ['class' => 'form-control-label']) }}
{{ Form::text('from_time[]', $fromTime, ['id' => 'from_time_'.$index, 'class' => 'form-control clone-min-timerange-picker']) }}
|
{{ Form::label('to_time[]', __('message.to_time'), ['class' => 'form-control-label']) }}
{{ Form::time('to_time[]', $data->to_time[$index], ['id' => 'to_time_'.$index, 'class' => 'form-control clone-min-timerange-picker']) }}
|
{{ Form::label('from_time', __('message.from_time'),['class' => 'form-control-label'] ) }}
{{ Form::text('from_time[]', is_array(old('from_time')),[ 'id' => 'from_time_no_0', 'placeholder' => __('message.from_time'),'class' =>'form-control clone-min-timerange-picker']) }}
|
{{ Form::label('to_time', __('message.to_time'),['class' => 'form-control-label'] ) }}
{{ Form::text('to_time[]', is_array(old('to_time')),[ 'id' => 'to_time_no_0', 'placeholder' => __('message.to_time'),'class' =>'form-control clone-min-timerange-picker']) }}
|