#I am beginner which starter should I install
1 messages · Page 1 of 1 (latest)
Do you authentication on your app?
no, its first time I'm installing it so I'm clueless
If you do no need any, the good choice would be "none". What is the error you get?
when im checking if project is properly created or not through "php artisan serve" cmd its saying "PHP Warning: require(E:\laravel\first_app_1/vendor/autoload.php): Failed to open stream: No such file or directory in E:\laravel\first_app_1\artisan on line 18
Warning: require(E:\laravel\first_app_1/vendor/autoload.php): Failed to open stream: No such file or directory in E:\laravel\first_app_1\artisan on line 18
PHP Fatal error: Uncaught Error: Failed opening required 'E:\laravel\first_app_1/vendor/autoload.php' (include_path='C:\xamppEvening\php\PEAR') in E:\laravel\first_app_1\artisan:18
Stack trace:
#0 {main}
thrown in E:\laravel\first_app_1\artisan on line 18
Fatal error: Uncaught Error: Failed opening required 'E:\laravel\first_app_1/vendor/autoload.php' (include_path='C:\xamppEvening\php\PEAR') in E:\laravel\first_app_1\artisan:18
Stack trace:
#0 {main}
thrown in E:\laravel\first_app_1\artisan on line 18"
did you run composer install ?
no, I have not
Install composer globally, and then run composer install in the project directory... After that, you will also need to setup your .env file with an APP_KEY
There should be an example.env file in the project root, you can copy / paste it as .env ... and then run
php artisan key:generate
Once the key is configured, you should be able to run
php artisan server
and view browser at
https://127.0.0.1:8000
ok bro I shall give it a try, much appreciated
It's probably useful to follow the Laravel Bootcamp: https://bootcamp.laravel.com/