Answers for "Class 'Form' not found"

0

Class 'Form' not found

composer require "laravelcollective/html"
Posted by: Guest on July-27-2020
0

Class 'Form' not found

'providers' => [
    // ...
    Collective\Html\HtmlServiceProvider::class,
    // ...
],

'aliases' => [
    // ...
   'Form' => Collective\Html\FormFacade::class,
   'Html' => Collective\Html\HtmlFacade::class,
    // ...
],
Posted by: Guest on July-27-2020

Code answers related to "Class 'Form' not found"

Browse Popular Code Answers by Language