从Laravel集体的选择表格中获得正确的价值

时间:2018-09-21 22:06:08

标签: php html laravel laravelcollective

我刚刚开始使用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() !!}

它看起来像这样 enter image description here

但是当我尝试通过$ request从此选择表单中获取值并返回到Laravel时,它将输出数字而不是用户选择的字符串值,如下所示:

"account_categories":"5"

如何获取用户从此SELECTBOX表单中选择的字符串值?

0 个答案:

没有答案