Installing Laravel 8 on Windows 10 Xampp
https://laratutorials.com/installing-laravel-8-on-windows-10-xampp/
Last updated
Was this helpful?
https://laratutorials.com/installing-laravel-8-on-windows-10-xampp/
Last updated
Was this helpful?
How to install laravel on windows 10 using xampp. In this post, i will show how to install and configure laravel 8 latest version on windows 10 xampp server.
And also show you how to start development server for laravel 8.
Installing laravel 8 on windows 10 xampp server step by step:
Step 1 – Prerequisiteto Install Composer On Windows
Step 2 – Server Requirements For Laravel 8
Step 3 – Installing Laravel On Windows 10 Xampp
Step 4 – Start Development Server For Laravel 8
In step 1, you need to install composer on windows 10 system. If you already composer download / installed Composer. Then follow step 2 proccess.
Otherwise, you can follow this tutorial :- .
The Laravel 8 version has a few system requirements. Before we will install laravel 8 on windows, read some system requirements.
PHP >= 7.3
BCMath PHP Extension
Ctype PHP Extension
Fileinfo PHP extension
JSON PHP Extension
Mbstring PHP Extension
OpenSSL PHP Extension
PDO PHP Extension
Tokenizer PHP Extension
XML PHP Extension
In step 3, you need to open your command prompt and navigate to local web server directory. Then type the command In the command prompt => composer create-project laravel/laravel Project Name.
Note that, This command will install a laravel 8 new setup on your windows xampp:
After running this command, wait for Laravel complete installation on windows system.
In this step 4, Open again cmd and type the php artisan serve command .
This will will start your server locally:
Using the above steps, you have successfully install laravel 8 on windows 10 xampp server.
Now, open your browser and fire the below given url on your browser:
http://127.0.0.1:8000
Alternate option, If you are not run php artisan server command, direct go to your browser and fire the following URL:
URL : http://localhost/blog/public/
When you fire http://127.0.0.1:8000/ url on browser, You will look like the image given below: