I am able to run "php artisan migrate" fine. I'm able to get all the form input if I use Request::all() but when I try to add the data to my mysql database table I get the below error:
ErrorException in ClassLoader.php line 412:
include(Correct_Path/full-personal/database/migrations/2015_07_06_035501_resume_requesters.php): failed to open stream: No such file or directory
I currently have the form attached to a controller method with the below code:
$input = Request::all();
ResumeRequesters::create($input);
I know that I am properly connected to mysql server because I'm able to migrate my migrations.
Any help would be great. Also why did laravel change so many things in Laravel 5?
Thanks
composer dumpautoload.
? – Sulthan Allaudeen