如何添加默认选项

时间:2015-09-11 08:11:12

标签: laravel-5

我只想添加默认值'请选择'使用selectMonth(),selectRange()和selectYear()函数

我的代码

<div class="col-md-1"> {!! Form::selectRange('day', 1, 31) !!}</div>
<div class="col-md-1"> {!! Form::selectMonth('month') !!}</div>
<div class="col-md-1">{!! Form::selectYear('year', 1950, 2015) !!}</div>

1 个答案:

答案 0 :(得分:0)

没办法。 你自己做吧。

Form::select('day', ['' => 'Select day'] + array_combine(range(1, 31), range(1, 31)))
Form::select('month', array_merge(['' => 'Select month'], range(1, 12)))
Form::select('year', ['' => 'Select year'] + array_combine(range(1950, 2015), range(1950, 2015)))

但我觉得这很丑陋。为什么不使用任何datepicker插件?https://jqueryui.com/datepicker/

更新:

$months = array(); 
foreach (range(1, 12) as $month) { 
    $months[$month] = strftime($format, mktime(0, 0, 0, $month, 1)); 
}

Form::select('month', array_merge(['' => 'Select month'], $months))