无量小猪

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

首先, 找到 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,

 

posted on 2017-05-04 16:40  无量小猪  阅读(172)  评论(0编辑  收藏  举报