Laravel Installation

1. Global Installation

composer global require laravel/installer

laravel new example-app

 

2. Per Project Installation

composer create-project laravel/laravel example-app

 

3. Specific Version Installation

composer create-project laravel/laravel:^8.0 example-app
(Install version 8.0)

 

 

 

Leave a Reply

Your email address will not be published. Required fields are marked *