This tutorial helps you in installing the Laravel.
This tutorial helps you in installing the Laravel framework on Windows.
First of all, you need some software to get started with Laravel project :
- Xampp
- Composer
Installing Xampp
- Open the XAMPP download page. Go to https://www.apachefriends.org/download.html in your computer’s web browser.
- Here You’ll find versions of xampp near the bottom of the list of downloads. Download as per your system configuration.
- Open the XAMPP setup file. Double-click the downloaded setup file to do so.
- Follow normal installation instructions and click Finish to complete the installation.
Installing Composer
- Open the Composer website. Go to https://getcomposer.org/download/ in your computer browser.
- Here You’ll find versions of the composer. Download as per your system configuration.
- Follow normal installation instructions and click Finish to complete the installation.
Installing the latest laravel package
- Goto C:\Xampp\htdocs
- Shift + Right Click to Open Command prompt here
- In Command prompt type (composer global require laravel/installer) and press ↵ Enter.
- Laravel will immediately begin to install.
Create new laravel Project
In Command prompt type (composer create-project –prefer-dist laravel/laravel blog)
Note: Here (blog) is the name of the project you can change it accordingly