Class 'Illuminate\Html\HtmlServiceProvider' 未找到
Class 'Illuminate\Html\HtmlServiceProvider' not found
我正在尝试使用 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,
- 我不能 运行 所有 php artisan 命令。
感谢您的关注!
从您的 config/app.php
提供商部分删除 Illuminate\Html\HtmlServiceProvider
行,因为您没有使用该软件包。
如果这还不够,也可能值得清除已编译的文件。
我正在尝试使用 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,
- 我不能 运行 所有 php artisan 命令。 感谢您的关注!
从您的 config/app.php
提供商部分删除 Illuminate\Html\HtmlServiceProvider
行,因为您没有使用该软件包。
如果这还不够,也可能值得清除已编译的文件。