I’m trying to install the Laravel Framework on Windows with the Laravel Installer method.
In the documentation I found the following:
If you have not installed composer on your system get from here.
You will get this if you have composer on your system installed
Open cmd in Windows and enter this command.
composer global require "laravel/installer"
This will download the latest version.
Check by entering the below command.
Run the below command in cmd, blog is the name of my new project.
laravel new projectname
That's it. Now you have your new project folder in the directory you have saved.