Laravel install in windows
By Laravel Installer method
- Install composer https://getcomposer.org/download/
- In command Line write composer global require “laravel/installer”
- Now go to path c:/wamp/www in cmd
- now write further C:/wamp/www laravel new projectname
By composer Installer method
- Install composer https://getcomposer.org/download/
- Now go to path c:/wamp/www in cmd
- now write further composer create-project –prefer-dist laravel/laravel projectname
thus the laravel file is installed for development.