Answers for "Class 'Form' not found laravel 5.1"

0

Class 'Form' not found

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

Class 'Form' not found

'providers' => [
    // ...
    CollectiveHtmlHtmlServiceProvider::class,
    // ...
],

'aliases' => [
    // ...
   'Form' => CollectiveHtmlFormFacade::class,
   'Html' => CollectiveHtmlHtmlFacade::class,
    // ...
],
Posted by: Guest on July-27-2020

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

Browse Popular Code Answers by Language