我一直在使用Laravel Collective作为我的表格,我似乎遇到了textareas的问题。一个不允许我使用与文本字段相同的代码更新null textarea字段。我认为问题在于' null'因为它允许我在textarea加载文本时更改字段。有谁知道如何解决这个问题,所以我可以用textareas更改空字段?
{!! Form::label ('otherinfo', 'Other information:') !!}
{!! Form::textarea ('otherinfo', null, array('class' => 'form-control', 'required' => '', 'maxlength' =>'1500') ) !!}
答案 0 :(得分:1)
你的例子应该可以正常工作。确保更新Controller以接受并保存$request->input('otherinfo')
中的值。
<?php
$otherinfo = 'Hello World';
?>
<div class="form-group">
{!! Form::label('otherinfo', 'Other information:') !!}
{!! Form::textarea('otherinfo', $otherinfo, ['class' => 'form-control', 'size' => '50x3']) !!}
</div>