Find the Best Cosmetic Hospitals

Explore trusted cosmetic hospitals and make a confident choice for your transformation.

“Invest in yourself — your confidence is always worth it.”

Explore Cosmetic Hospitals

Start your journey today — compare options in one place.

Setting a Local Development Environment for Laravel on Windows | Install Laravel on Windows

Many developers use Windows for PHP projects, we will cover a basic XAMPP Setup for a Laravel project. Following these easy steps will help you run your PHP projects and install Laravel on Windows in a matter of minutes.

1.Installing XAMPP for Laravel

  • Download XAMPP for Windows from their official site: https://www.apachefriends.org/download.html
  • For our example, we’ve chosen PHP 7.1 and XAMPP 32 bit
  • Run the installer and select Apache, MySQL and phpMyAdmin
  • It’s recommended to make the installation in C:\ to avoid issues with Windows User permissions (or the drive where your Windows is installed)
  • After it’s complete do not start anything just yet.

2.Setting PHP from Windows CMD

  • Open Advanced System Settings (System Properties -> Advanced)
  • Open Environment Variables
  • On the top window select Path and click on Edit
  • In the new window click on New
  • We need to enter the path to XAMPP’s PHP

We will also add MySQL’s Path, click on New again and enter

C:\xampp\mysql\bin

3.Composer from Windows CMD

  • Download Composer’s Windows .exe installer: https://getcomposer.org/download/
  • Place the installer and run it from the added to Path directory –
C:\xampp\php

Now that we have Apache, PHP, MySQL and Composer installed, we’re ready to install Laravel, set a Virtual Host with a custom domain for local development. XAMPP’s Apache uses the htdocs folder for serving HTTP requests, we’ll set our custom Laravel Virtual Host under C:\xampp\htdocs\example\ which will be opened locally from example.com

4.Install Laravel on Windows with Composer

  • Open Window’s CMD or PowerShell
cd C:\xampp\htdocs

Install Laravel using Composer

composer create-project --prefer-dist laravel/laravel example

5.Creating MySQL Database for Laravel

  • Open the CMD or PowerShell again
  • Access the MySQL CLI
mysql -u root -p

Create Database for Laravel

CREATE DATABASE laravel DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;Code language: PHP (php)

6.Setting Laravel’s .env file

  • Navigate to C:\xampp\htdocs\example
  • Open the .env file and edit the MySQL Connection settings
DB_HOST=localhost
DB_DATABASE=laravel
DB_USERNAME=root
DB_PASSWORD=

7.Virtual Host with XAMPP

  • Navigate to C:\xampp\apache\conf\extra
  • Open httpd-vhosts.conf and append:
NameVirtualHost *:80 
<VirtualHost example.com:80>
 DocumentRoot "C:\xampp\htdocs\example\public"
 ServerName example.com
 ServerAlias www.example.com
 <Directory "c:/xampp/htdocs/example/public">
 Require all granted </Directory>
 </VirtualHost>Code language: HTML, XML (xml)

8.Enable mod_rewrite for Laravel

  • Open the httpd.conf file in C:\xampp\apache\conf\extra
  • Look for LoadModule rewrite_module modules/mod_rewrite.so and remove the ; at the start

9.Setting local domain with hosts file

  • Navigate to c:\Windows\System32\Drivers\etc
  • Open the hosts file with Administrator Privileges
  • Append the line at the bottom
127.0.0.1 www.example.com example.comCode language: CSS (css)

Start Apache and MySQL, your local Laravel project will be opened from example.com and you’re ready to start working on it. When ready you can contact us to have it deployed on a WebHostFace server

Find Trusted Cardiac Hospitals

Compare heart hospitals by city and services — all in one place.

Explore Hospitals
MotoShare.in is your go-to platform for adventure and exploration. Rent premium bikes for epic journeys or simple scooters for your daily errands—all with the MotoShare.in advantage of affordability and ease.

Related Posts

What is Laravel and use cases of Laravel?

What is Laravel? Laravel is an open-source, free PHP web framework designed for the development of web applications following the model-view-controller (MVC) architectural pattern. It was generated…

Read More

Complete guide of Laravel certification courses, tutorials & training

What is Laravel Laravel is a reliable and simple to use open-source PHP framework. It adheres to the model-view-controller pattern of design. Laravel makes use of pre-existing…

Read More

Top 100 laravel interview questions and answers

1) What is Laravel? Laravel is an open-source widely used PHP framework. The platform was intended for the development of web application by using MVC architectural pattern….

Read More

[SOLVED] Laravel : Supervisor FATAL/BACKOFF Exited too quickly (process log may have details)

Problem I’m trying to use Laravel queues with a supervisor but the service is not working properly. When I try to check status:$ sudo supervisorctl status$ laravel-worker:laravel-worker_00:…

Read More

How to Login with Token in Laravel PHP Framework?

How to Login with Token in Laravel PHP Framework? Step 1. Create a new Project, so write down the following command on Git Bash: Step 2. Move…

Read More

Directory Structure Of Laravel Application

devopsschool – This is Project Folder app – The app directory contains the core code of your application. bootstrap – The bootstrap directory contains the app.php file…

Read More