Skip to content

Instantly share code, notes, and snippets.

@LinuxlinkedBD
Created December 4, 2020 19:38
Show Gist options
  • Save LinuxlinkedBD/d27b048da4b704ce0c247e009531af65 to your computer and use it in GitHub Desktop.
Save LinuxlinkedBD/d27b048da4b704ce0c247e009531af65 to your computer and use it in GitHub Desktop.
Laravel installation || A free, open-source PHP framework for Web Artisans
If you need complete Laravel setup, ping me on below contacts:
Telegram: linuxlinked
email: [email protected]
WhatsApp: +8801720903155
Skype:live:.cid.c0dc316b9d727d5e
YouTube: https://youtu.be/w51JCjB5-nM
########################################################################################################################################
sudo apt-get update
sudo apt -f install
sudo apt autoremove
sudo apt -y autoclean
sudo apt -y clean
sudo apt update
sudo apt-get upgrade
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get install apache2 libapache2-mod-php7.2 php7.2 php7.2-xml php7.2-gd php7.2-opcache php7.2-mbstring
cd /var/www/html
sudo composer create-project laravel/laravel your-project --prefer-dist
sudo a2ensite laravel.conf
sudo a2enmod rewrite
sudo service apache2 restart
#Your Laravel installation is now complete. Browse http://localhost in your browser
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment