Installing Laravel

Author: Al-mamun Sarkar Date: 2020-06-17 14:44:04

I this section I will show you how to install laravel or create a Laravel project on your computer.

 

Installing via Laravel Installer:

composer global require laravel/installer

Creating project:

laravel new blog

 

Creating project via Composer Create-Project:

composer create-project --prefer-dist laravel/laravel blog

 

Running Laravel Application:

php artisan serve