Setup Laravel in Simple Way...
Laravel now days is mostly used MVC framework. In this article will guide for setting up in easy and simple steps.
For managing dependencies, Laravel uses?composer. Make sure you have a Composer installed on your system before you install Laravel.
You will have to follow the steps given below for installing Laravel onto your system ?
Step 1?? Visit the following URL and download composer to install it on your system.
Step 2?? After the Composer is installed, check the installation by typing the Composer command in the command prompt as shown in the following screenshot.
Step 3?? you can install the complete framework by typing the following command ?
composer create-project laravel/laravel?sample_project (Name of Project want to create)
The output of the command is as shown below ?
Step 4?? The above command will install Laravel in the current directory. Start the Laravel service by executing the following command.
php artisan serve
Step 5?? After executing the above command, you will see a screen as shown below ?
Step 6?? Copy the URL underlined in gray in the above screenshot and open that URL in the browser. If you see the following screen, it implies Laravel has been installed successfully.
That's All....
Happy to Help!!!