开发者问题收集

Laravel5.3引导错误

2016-11-11
95

我的代码 test.blade.php

<div class="col-lg-10">
    {{ Form::text('movie', ['class' => 'form-control'])}}
 </div>

错误是

helpers.php 第 519 行中的 ErrorException: htmlspecialchars() 要求参数 1 为字符串,给定数组 (Vi

1个回答

Form::text() 的第二个参数应为字符串,但您尝试传递数组。这将有效:

{!! Form::text('movie', '', ['class' => 'form-control']) !!}
Alexey Mezenin
2016-11-11