I want to run my existing laravel project into my new windows system
I have copied laravel project from old windows system now i want to run this project into my new windows system and I copied all the files from old system tp this system. Now what other steps should i follow to run it.
We don't know how your old system was set up, so it's kind of hard to answer that. Did you install php, mysql or any other things you need? Personally I just install homestead, which includes 100% of everything you need for a default laravel install. Especially on windows which is a non-case sensitive OS and can cause many issues developing on if you're not very careful. Most of the time you don't realize your mistakes until you upload it to a real server (which is most likely case-sensitive) and nothing works.
install web server (I use WampServer which includes php and mysql)
install composer (download .exe and install, during the installation procedure set the correct path to php.exe, then you will have php command available later in cmd)
install Laravel project - go to c:\wamp\www and run composer create-project laravel/laravel <projectname> --prefer-dist
create Git repository
create database (I suggest using SQLite for local testing deployments - so install SQLite and DB Browser for SQLite)
install Node.js
go to <projectroot> directory and run npm install
go to <projectroot>\resources\assets\sass\app.scss and uncomment the line...
If you had copied vendor folder than you should delete after copied to your new windows system and run command ## composer update to avoid any composer related issues like paths,versions and compatibility.