Laravel Installation is so simple and easy.Laravel Installation steps are given below.
you might also like our Installation Step of Laravel 5 in Ubuntu.
Click on WAMP icon->PHP->PHP Extensions and enable following.
php_openssl, php_curl, php_socket
Click on WAMP icon->Apache->Apache Modules and enable following.
ssl_module
Open httpd-vhosts.conf file located in "C:\wamp\apache\conf\extra\httpd-vhosts.conf" and add following code.
<VirtualHost *:80>
ServerName laravel.dev
DocumentRoot C:/wamp/www/laravel/public
SetEnv APPLICATION_ENV "development"
<Directory C:/wamp/www/laravel/public>
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
127.0.0.1 laravel.dev
Type following URL in your browser.
laravel.dev