I\'m trying to install Laravel using Composer, but after running the following command
composer create-project laravel/laravel cmsLaravel 5.2
Follow the steps below;
Go inside the folder C:\xampp\htdocs>(if you are using xampp) or C:\wamp\www>(if you are using wamp) and open cmd/PoweShell & run the following commands:
composer global require "laravel/installer"composer create-project laravel/laravel (after running this command a folder having name Laravel will be created there) php artisan serve command.After executing the last cmd, it will show an URL: http://127.0.0.1:8000; access the URL in a browser, which should reflect the will see the default webpage of Laravel.