Laravel - 表单模型和数组类

时间:2017-05-11 13:21:25

标签: forms laravel model-view-controller

我想使用表单模型并将类添加到表单

{ Form::model($client, array('route' => array('client.update', $client->id))) }}


{{ Form::text('name', array('class' => 'form-control')) }}

这会抛出一个错误,因为它需要一个字符串

htmlentities() expects parameter 1 to be string, array given 

这会使该字段为空白。

  {{ Form::text('name', '', array('class' => 'form-control')) }}

是否有可能让它发挥作用?

0 个答案:

没有答案