Create Laravel Project
Pre-requisites: PHP, Composer, and WAMP
VS code-Terminal or any text editor:
composer create-project --prefer-dist laravel/laravel blog or (with version), composer create-project --prefer-dist laravel/laravel blog "5.7.*"
Here,
the project name is "blog", and 5.7 is the Laravel version.
Project run command (localhost): On the terminal
cd blog
blog> php artisan serve
Authentication command: On the terminal blog>php artisan make:auth