Problem Solving php artisan: “failed to open stream: No such file or directory” laravel
This is caused because you're missing your "Vendor" directory which is causing a missing dependency error. To fix this you need to run:
Composer update
In most cases, updating the Composer will regenerate the vendor folder and the autoload.php file.
Alternatively, you can regenerate the autoload.php file using the command,
composer dump-autoload
If the Composer is found corrupted, uninstall the existing one and reinstall it. To install Composer, run this command in the root project folder:
Composer install
0 Response to "Problem Solving php artisan: “failed to open stream: No such file or directory” laravel"
Post a Comment