错误:FormBuilder.php 第 1208 行中的 BadMethodCallException:方法 hasErrors 不存在。
所以我像往常一样安装了 Laravelcollective,大多数方面都在工作。
我的 composer.json
"laravelcollective/html": "~5.0",
在我的 config/app.php 提供者中
Collective\Html\HtmlServiceProvider::class,
和别名
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
但是,我收到错误:
FormBuilder.php 第 1208 行中的 BadMethodCallException:方法 hasErrors 不存在。
不太清楚这里发生了什么。我的 html 中的错误如下所示。
{{ Form::hasErrors('name') }}
{{ Form::errors('name') }}
我需要为这些安装单独的软件包吗?