In this video we are going to learn about how we can install the laravel 8.
Laravel is a PHP based web framework which ideal for building both simple and complex web applications.
For creating laravel 8 project.
We will use composer.
So first of all lets install the composer.
For that just go to the google.com and search composer.
Now open composer link and from here just download the composer-setup.exe file.
Lets run this setup.
After installation of composer.
Lets check composer is isntalled or not.
For that open command prompt and run the command.

composer


After runing this commad you see the composer version and all command detials.
Now lets create Laravel 8 Project.
So first of all go to the project location.
So just go to the c drive then xampp then htdocs.
Here just open command prompt.
So in url here just type cmd.
Now inside the command prompt.


composer create-project laravel/laravel laravel8pro


Now its createing the project.
Alright laravel 8 project has been created.
Now lets open this laravel project to the visual studio code.
So switch to visual studio code and.
Click on add folder.
Now browser the project directory.
and select laravel8pro project folder.
You can see this is laravel 8 project.
These are the folder structure of laravel 8.
Now open composer.json file.
and here you can see the laravel version 8.x.
now run the laravel project.
For that go to the command prompt and here run the command.

php artisan serve

Now laravel 8 project is runing on localhost:8000 port.
So let's check.
switch to the browser and go to the url http://localhost:8000
Here you can see here laravel 8 is now running.
So in this way you can install and create laravel 8 project.