Man*_*mar 2 php template-engine blade laravel-4
我试图显示所有国家的下降.在编辑页面中,我想将国家/地区设为选中状态.说India的selected=selected.
<div class="large-3 columns">
{{ Form::label('country') }}
</div>
<div class="large-4 columns">
@include("common.country")
</div>
Run Code Online (Sandbox Code Playgroud)
我该怎么做 是否可以传递数组中的值@include("common.country")?
echo Form::select('size', array('L' => 'Large', 'S' => 'Small'), 'S');
Run Code Online (Sandbox Code Playgroud)
这里默认选择Small.我们可以在结尾添加默认的选定项目. 下拉列表