hello everyone,
I am cloning a project on Github, I followed the tutorial steps listed bellow
clone the repo
$ git clone https://github.com/coreui/coreui-free-laravel-admin-template.git my-project
go into app's directory
$ cd my-project
install app's dependencies
$ composer install
install app's dependencies
$ npm install
the above stages were successful and I have connected the .env to myql database
the next stage which is
in your app directory
generate laravel APP_KEY
$ php artisan key:generate
i have tried everything possible to pass this stage is showing me error. i have use composer update, composer dumpautoload still giving me same error..
this the error message
ODUMS@ODUM MINGW64 /c/_project/web/prediction (master)
$ php artisan
Warning: require(C:_project\web\prediction/vendor/autoload.php): failed to open stream: No such file or directory in C:_project\web\prediction\artisan on line 18
Fatal error: require(): Failed opening required 'C:_project\web\prediction/vendor/autoload.php' (include_path='.;C:\php\pear') in C:_project\web\prediction\artisan on line 18
I also included the (include_path='.;C:\php\pear) in artisan file still giving me error
how will I resolve....