如何在laravel 5

时间:2016-04-09 03:28:01

标签: laravel-5

这是我的日期字段和时间字段。

{!! Form::input('date', 'eventDate', $value = null, $options = array()) !!}
{!! Form::input('time', 'time', $value = null, $options = array()) !!}

我应该在哪里插入['class'=> 'form-control'] bootstrap class?

1 个答案:

答案 0 :(得分:0)

试试这个:

您可以使用$ options数组添加它。

{!! Form::input('time', 'time', $value = null, $options = array('class'=>'form-control')) !!}
{!! Form::input('time', 'time', $value = null, $options = array('class'=>'form-control')) !!}