Ad
Class 'Form' Not Found In Laravel 7
I'm upgrading from Laravel 5 to Laravel 7.
I'm using a lot of Form::model
on my project.
Class 'Form' not found
I tried to install
"laravelcollective/html": "~5.0"
I kept getting
Problem 1
- Conclusion: remove laravel/framework v7.3.0
- Conclusion: don't install laravel/framework v7.3.0
- Conclusion: don't install laravel/framework v7.2.2
- Conclusion: don't install laravel/framework v7.2.1
- Conclusion: don't install laravel/framework v7.2.0
- Conclusion: don't install laravel/framework v7.1.3
- Conclusion: don't install laravel/framework v7.1.2
- Conclusion: don't install laravel/framework v7.1.1
- Conclusion: don't install laravel/framework v7.1.0
- Conclusion: don't install laravel/framework v7.0.8
- Conclusion: don't install laravel/framework v7.0.7
- Conclusion: don't install laravel/framework v7.0.6
- Conclusion: don't install laravel/framework v7.0.5
- Conclusion: don't install laravel/framework v7.0.4
- Conclusion: don't install laravel/framework v7.0.3
- Conclusion: don't install laravel/framework v7.0.2
- Conclusion: don't install laravel/framework v7.0.1
- Conclusion: don't install laravel/framework v7.0.0
What options do I have now ?
- replace all Form facade with HTML ? that would be a lot ... 😭
- add a Form Facade again on this new set up
Which one do you guys think I should do ?
Ad
Answer
To support Laravel
7.x
, you will need to install version 6.0
of the HTML package. 5.x
Does not support newer versions of Laravel
after 5.8
. Update your composer.json
.
"laravelcollective/html": "~6.0"
After that run.
composer install
Or simply require it from the command line.
composer require laravelcollective/html "~6.0"
Ad
source: stackoverflow.com
Related Questions
- → "failed to open stream" error when executing "migrate:make"
- → October CMS Plugin Routes.php not registering
- → OctoberCMS Migrate Table
- → OctoberCMS Rain User plugin not working or redirecting
- → October CMS Custom Mail Layout
- → October CMS - How to correctly route
- → October CMS create a multi select Form field
- → October CMS - Conditionally Load a Different Page
- → How to disable assets combining on development in OctoberCMS
- → October CMS - Radio Button Ajax Click Twice in a Row Causes Content to disappear
- → OctoberCms component: How to display all ID(items) instead of sorting only one ID?
- → In OctoberCMS how do you find the hint path?
- → How to register middlewares in OctoberCMS plugin?
Ad