Skip to main content

How to Install Laravel on Windows 10

How to Install Laravel on Windows 10. To install Laravel on Microsoft Windows 7/8/10, we need to have the latest version of PHP and composer installed. If you have not installed composer Install Composer on Windows, in case you already have the composer on your system, make sure it is up to date!  Update or upgrade composer



 Then install Laravel on Windows 7/8/10



 

Comments

  1. If you face any issue in installing Laravel on Windows systems, please leave your questions below for resolution and answers. Thanks!

    ReplyDelete

Post a Comment

Popular posts from this blog

Ubuntu network service discovery disabled - FIXED

Ubuntu network service discovery disabled - FIXED How to fix Ubuntu network service discovery disabled. How to enable Ubuntu network service discovery. Sorry about the background noise. I have just enabled noise cancellation on ubuntu 16.04

How to Install Python 3.7 on Windows 7/8/10

How to Install Python 3.7 on Windows 7/8/10 How to download and Install Python 3.7 Download python 3.7 on windows 7/8/10 Download Link http://ift.tt/POUvnn

MySql Tutorial: CREATE database, table & INSERT VALUE

MySql Tutorial: CREATE database, table & INSERT VALUE How to create database and tables in MySql using the terminal on UBUNTU ... mysql -r root -p enter you password SHOW DATABASES; CREATE DATABASE name; USE database_name; CREATE TABLE name (fields and their data types); DESCRIBE table_name; INSERT INTO table_name VALUE(field values); SELECT * FROM table_name: