You can download the source code for this tutorial here: https://www.ericsdevblog.com/index.php/beginners-roadmap-to-web-development/ This course explains the basic use of the Laravel framework by building a simple blogging system.
Next, we can use the installer to create a new Laravel application in the project directory: laravel new blog cd blog php artisan serve
Before we start writing code, let's take a look at what has been installed into our project.
This folder contains the entire source code of our project.