To start this session we need to install Laravel framework in our local machine(Computer) To install a fresh Laravel project we have many different methods. but the best method is to install via Composer to install a fresh new project via Composer write this command.
composer global require "laravel/installer"
After that, you can install new project by this Command.
composer create-project --prefer-dist laravel/laravel blog
laravel new blog
It takes some time or depends on your internet speed. after Successfully install you can see these files.
Now, we have a fresh new Laravel project. To run this project on our default browser run this command on your CMD (make sure your CMD Path should be in Project Folder).
php artisan serve
After this Command Your will the terminal look like this...
Now you can open this URL in the browser "//127.0.0.1:8000" or "localhost:8000" and see the welcome page of Laravel Project.