Member-only story
How To Create Laravel Project From Scratch
2 min readSep 28, 2020
In order to create laravel project from scratch including authentication in a simple way, we have to follow the below guidelines.
- We have to download and install the composer file that is important for the laravel application to start. You can download the composer file directly from this website. download the composer here.
- After the successful installation of the composer, open the command prompt terminal and type composer. Now, you will see the composer screen.
- Now, we have to create a fresh laravel project inside the root directory folder of our local server. In my case, the root directory folder is www (WAMP Server).
Also Read, How to run laravel on localhost without PHP artisan serve
Create laravel project using composer
Now, you can create the laravel project using the composer with the help of the create-project command as given below.
Open the command terminal and paste the above line of code inside the directory folder in the terminal. Here, blog is used as the folder name of the project. You can change as per your choice.