Class ' Form' not found in view-file.blade.php

≯℡__Kan透↙ 提交于 2019-12-01 18:42:06

Install laravelcollective/html

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

Update Composer

composer update

Add Provider and Static Facade in config/app.php

<?php

'providers' => [

    Collective\Html\HtmlServiceProvider::class,

  ],

'aliases' => [

      'Form' => Collective\Html\FormFacade::class,

      'Html' => Collective\Html\HtmlFacade::class,

  ],

This may be due to adding it into config/app before Composer was done installing it.

Try using php artisan config:cache

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!