{!! Form::select('gl_code', [''=>'']+$coa->pluck('coa_info','COAID')->toArray(), old('gl_code', isset($data) ? $data->gl_code: 0), ['id'=>'coa_gl','name'=>'gl_code','class'=>'an-form-control','style'=>'width: 150px;']) !!}
我想在我的下拉列表中插入'data-desc'=>'COADesc'
选项。
答案 0 :(得分:-1)
只需在样式属性,'data-desc'=>'COADesc'之后添加它。它与任何其他属性(id或名称或类)相同。
希望它有所帮助......。
答案 1 :(得分:-1)
在数组中添加' data-desc' =>' COADesc' 。 有关详细信息,请查看此:Laravel Select
{!! Form::select('gl_code', [''=>'']+$coa->pluck('coa_info','COAID')->toArray(), old('gl_code', isset($data) ? $data->gl_code: 0), ['id'=>'coa_gl','name'=>'gl_code','class'=>'an-form-control','style'=>'width: 150px;', 'data-desc'=>'COADesc']) !!}