I am pretty new in Laravel and I have the following big problem.
I develop a Laravel 5 project on an old computer, I put the code on a GIT account.
Now I retrieve my source code from my new laptop via GIT.
The problem is that running the Laravel project on Apache now I am obtaining this error message instead my Laravel website:
Warning: require(C:\xampp\htdocs\HotelRegistration\bootstrap/../vendor/autoload.php): failed to open stream: No such file or directory in C:\xampp\htdocs\HotelRegistration\bootstrap\autoload.php on line 17
Fatal error: require(): Failed opening required 'C:\xampp\htdocs\HotelRegistration\bootstrap/../vendor/autoload.php' (include_path='C:\xampp\php\PEAR') in C:\xampp\htdocs\HotelRegistration\bootstrap\autoload.php on line 17
The C:\xampp\htdocs\HotelRegistration\bootstrap\autoload.php is present in my project
Why? What is the problem? What am I missing? How can I fix this issue? How can I try to solve this issue?
via blablabla blablabla