我刚刚开始使用Laravel Collective。但是,当我尝试从“选择表单”中提取值时遇到问题。
{!! Form::open(['method'=>'POST','action'=>['ExpenseController@store'],'files' =>false], array('enctype'=>'multipart/form-data','id'=>'customer_contact','class' => 'form-validate1')) !!}
{{ Form::select('account_categories', $account_name,null, array("class"=>"dropdown-toggle form-control",'placeholder'=>'Please select ...')) }}
{!! Form::close() !!}
但是当我尝试通过$ request从此选择表单中获取值并返回到Laravel时,它将输出数字而不是用户选择的字符串值,如下所示:
"account_categories":"5"
如何获取用户从此SELECTBOX表单中选择的字符串值?