Answers for "how to install laravel with cmd"

0

how to install laravel

# Via Laravel Installer
composer global require laravel/installer
laravel new project name
php artisan serve
         or
#Via Composer Create-Project
composer create-project --prefer-dist laravel/laravel:^7.0 project name
php artisan serve
Posted by: Guest on February-27-2022

Code answers related to "how to install laravel with cmd"

Browse Popular Code Answers by Language