这是我的日期字段和时间字段。
{!! Form::input('date', 'eventDate', $value = null, $options = array()) !!}
{!! Form::input('time', 'time', $value = null, $options = array()) !!}
我应该在哪里插入['class'=>'form-control']引导类?
试试这个:
您可以使用$options数组添加它。
{!! Form::input('time', 'time', $value = null, $options = array('class'=>'form-control')) !!}
{!! Form::input('time', 'time', $value = null, $options = array('class'=>'form-control')) !!}