首先, 找到 composer.json替换
"illuminate/html": "^5.0"
为
"laravelcollective/html":"5.2.*"
接着命令行composer update
.
然后在config/app.php
找到:
'Illuminate\Html\HtmlServiceProvider::class'`
替换为
'Collective\Html\HtmlServiceProvider::class'
再然后找到:
'Form' => Illuminate\Html\FormFacade::class,
'Html' => Illuminate\Html\HtmlFacade::class,
替换为
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,