“如何修复Laravel中的'找不到类'错误”

时间:2019-01-21 12:49:14

标签: laravel

我需要在Laravel中创建一个表单。当我打开const Nav = styled.ul''时,显示此错误

  

“找不到类'Collective \ Html \ FormFacade'(视图:C:\ xampp \ htdocs \ softwareProject \ test \ resources \ views \ studentForm.blade.php)“

该如何解决?

1 个答案:

答案 0 :(得分:0)

您需要编辑composer.json文件以要求laravelcollective/html

在终端或命令提示符中使用composer,输入以下内容:

composer require "laravelcollective/html":"^5.4.0"

第二,将此提供程序添加到providers的{​​{1}}数组中,如下所示:

config/app.php

最后将两个类别名添加到'providers' => [ // ... Collective\Html\HtmlServiceProvider::class, // ... ], 的{​​{1}}数组中:

aliases

有关更多详细信息,请检查docs

更新:

如果遇到config/app.php错误,则可以在'aliases' => [ // ... 'Form' => Collective\Html\FormFacade::class, 'Html' => Collective\Html\HtmlFacade::class, // ... ], 中手动插入此条目。然后,使用composer更新。

您现在需要的只是在{laravel / framework“:” 5.4。*“的行下方添加[UnexpectedValueException] Could not parse version constraint :5.4.0: Invalid version string ":5.4.0",如下所示:

composer.json