我试图用Laravel 5添加HtmlServiceProvider。但是当我写 - " php artisan serve"在终端我得到错误 -
[Symfony\Component\Debug\Exception\FatalErrorException]
Class 'Illuminate\Html\HtmlServiceProvider' not found
我已经把这些东西放在配置中了。
"laravelcollective/html": "5.2.*"
Collective\Html\HtmlServiceProvider::class,
和
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
答案 0 :(得分:1)
从您的Illuminate\Html\HtmlServiceProvider
提供商部分删除config/app.php
行,因为您没有使用该包。
如果还不够,也可能值得清除已编译的文件。