我正在使用Laravel构建一个Web应用程序,运行该应用程序后出现此错误:
Call to undefined method Illuminate\Html\FormFacade::open()
有人提到使用“laravelcollective / html”:“5.1。*”作为“illuminate / html”:“^ 5.0”不再使用Form。但是,在这两种情况下,我都会收到上面的错误消息。你能告诉我如何解决这个问题。
答案 0 :(得分:0)
请确保您的composer.json
文件使用"laravelcollective/html": "^5.0@dev"
,因为不再支持illuminate
版本。
请务必在Collective\Html\HtmlServiceProvider::class,
文件中添加config/app.php
作为提供者以及别名:
'HTML' => Collective\Html\HtmlFacade::class,
'Form' => Collective\Html\FormFacade::class,