Table of Contents
Tutorial: How to Install Laravel – A PHP Framework
About How to Install Laravel – A PHP Framework
This is a tutorial on How to Install Laravel – A PHP Framework. PHP is a server-side scripting language designed primarily for web development. Using PHP, you can let your user directly interact with the script and easily to learned its syntax. It is mostly used by a newly coders for its user-friendly environment.
You may visit the official Laravel site for documentations and installation using this link. First make sure you meet the following requirements:
- PHP >= 7.0.0
- OpenSSL PHP Extension
- PDO PHP Extension
- Mbstring PHP Extension
- Tokenizer PHP Extension
- XML PHP Extension
To get PHP version >=7.0.0, you may download XAMPP that supports PHP 7 or higher using this link.
Edit Environment Variable
After getting PHP 7 or higher, please take note of its directory because we will add it to our environment variable. 1. Right-click This PC, your PC, then click Properties or go to Control Panel > System and Security > System. 2. Click Advanced system settings, then click Environment Variables. 3. At System Variables, select Path, click Edit, and select the Path of your PHP 7 or higher and click OK.
Install Composer
Next, we need to install composer to manage the dependencies of Laravel. You may use this link to download composer. In the installation of composer, select the path of your PHP 7 in my case in C:/xampp7/php/php.exe. After installation, check you PHP version and composer by typing the code below in command prompt. to check PHP version: php -v and to check composer: composer -v
Installing Laravel
To install Laravel, we’re gonna use our composer by typing the code below in command prompt: composer global require "laravel/installer"
You may check if Laravel is properly installed by typing Laravel in command prompt.
Creating New Project
Select the directory where you want to put your project. In my case, I’m gonna use C:/xampp7/htdocs. In command prompt, navigate to your directory and type: composer create-project –prefer-dist laravel/laravel mysite. This will create our project named mysite and it will be in the latest version of Laravel. If you want to specify laravel version you want to use, just add “version.*” at the end of the line. For example composer create-project –prefer-dist laravel/laravel mysite “5.4.*” for laravel 5.4.
Adding our Project to Localhost
1. Open your XAMMP directory, in my case, in xammp7. Open in text editor xammp7/apache/conf/extra/httpd-vhosts.conf. 2. Add our project, by adding the code below:
<VirtualHost *:80> DocumentRoot "C:/xampp7/htdocs/mysite/public" ServerName mysite.dev </VirtualHost>
3. Run Notepad as Administrator and open C:/Windows/System32/drivers/etc/hosts. Make sure to select all files in “etc” folder to make hosts file visible. Add the ff. codes at the botton in hosts file.
127.0.0.1 mysite.dev
Running our Project
Restart your XAMMP and in your web browser type in your project name. In my case mysite.dev. It should look like this:
That ends this tutorial. Happy Coding 🙂
Download Here
after installing and creating my project on laravel application, i run it and the laravel page loaded but but no Admin login for my project,,,please how can i access my admin login page?