{{ Form
.select('foo', {
'foo': 'bar',
}) }}
我需要根据条件申请一个班级。例如,我有一个返回error
bool
函数
如何应用'class' => 'error() ? 'my_class' : 'other_class'
?
答案 0 :(得分:1)
在Laravel 4中:
$('#flight-stops-filter ul li a').click(function() {
var lis=$('#flight-stops-filter ul li.active');
if (lis.length > 0 ) {
alert(this.text);
}
}
在Laravel 5中:
{{ Form::select('name', ['value' => 'Label', 'another-value => 'Label'], null, ['class' => error() ? 'class' : 'another-class']) }}