我目前安装了 laravel 并尝试创建我的第一个应用程序,但是当我需要 laravel 集体时,我得到了上面的错误。
这是我的 composer.json
{
"require": {
"laravel/installer": "~1.1",
"laravelcollective/html": "5.1.*"
}
}
我的 app.php 有这些行.. providers=>
...Illuminate\Validation\ValidationServiceProvider::class,
Illuminate\View\ViewServiceProvider::class,
Collective\Html\HtmlServiceProvider::class,
别名=>
...'Validator' => Illuminate\Support\Facades\Validator::class,
'View' => Illuminate\Support\Facades\View::class,
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
我一直在阅读和寻找解决方案,但目前它们从未对我有用..任何帮助将不胜感激..在此先感谢..