Laravel – Installation
If you are going to install laravel then first you need to install commposer.
so for download composer go here https://getcomposer.org/
and you can read its installation command or you can direct copy this command and run on your cmd.
to open cmd in windows go on search section and type cmd then a black screen will come like this,

paste this command direct on that cmd (here is no need to change any directory.
copy first this and run it ===
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
now this ====
php -r "if (hash_file('sha384', 'composer-setup.php') === '756890a4488ce9024fc62c56153228907f1545c228516cbf63f885e036d37e9a59d27d63f46af1d4d07ee0f76181c7d3') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
and at last this ===
php composer-setup.php
now your composer has been installed, now you need to install laravel so agian paste this command and finally your laravel will be install.
composer create-project laravel/laravel C:/wamp64/www/laravel2
(you can use your folder name(as i used laravel2) as you want. if you want to install laravel on d: drive then change you directory path respectively.
Now you can check at C:/wamp64/www/ here laravel2 name folder has been come.
Now go to this directory(your directory path can be different) by type
C:\Users\pc>cd C:\wamp64\www\larvel
and now past this command
php artisan serve
it will look like this
C:\wamp64\www\larvel>php artisan serve
after run this command finally you will get this resopnce
Laravel development server started: http://127.0.0.1:8000
and now you can go with your browser and run you url( in my case this is – http://127.0.0.1:8000)
Hope this will help you to install a laravel framework so please subscribe is via your mail id
thanks