In this tutorial, I will walk you through the step by step guide for Laravel5 Installation.
There are many ways for Laravel5 Installation. I personally recommend using the COMPOSER. Laravel uses the composer to install and manage all the dependencies required to run laravel projects properly. Follow the steps below on Linux OS
Step 1 – Composer installation
Open the terminal and run the following commands:
sudo apt update
sudo apt install curl php-cli php-mbstring git unzip
cd ~
curl -sS https://getcomposer.org/installer -o composer-setup.php
sudo php composer-setup.php --install-dir=/usr/local/bin --filename=composer