First: You need composer
go to: https://getcomposer.org/download
And run code in quotes
Second: create project with Laravel in your www folder via Composer Create-Project
cd /var/www
composer create-project --prefer-dist laravel/laravel k
Where k - is a name of your project
Third: Laravel is installed. Let's configure apache!
Create .conf file at /etc/apache2/sites-available with:
Fourth: Enable website in apache & restart apache
a2ensite [name_of_your_conf]
service apache2 restart
Fifth: It works
Next step (soon): configuring DB