Laravel Installation Using Composer

Laravel Installation Using Composer

Make sure you have installed composer in your machine

To check Installation By using command prompt Enter

C:\> Composer

If Not Download From https://getcomposer.org/download/

 Go to the directory where you want to install Laravel

and Enter  The Following Command

 

composer create-project laravel/laravel  first-laravel-app

 

Laravel project will be created with the folder name first-laravel-app

To run laravel app go to inside the Laravel app folder and enter the following command


php artisan serve

 

Administrator 

after the following command you see the above screen which will provide url to access your laravel project copy and paste on your browser you will see the laravel screen.

Congratualtion you have successfully installed and run the laravel project

 

Comments

Popular posts from this blog

Laravel Dompdf Installation

How to connect to mysql with laravel?