Laravel is a tool that helps you build websites and web applications using the PHP programming language.
KEY POINTS ABOUT LARAVEL
HOW TO CREATE A LARAVEL PROJECT
Way 1:
- this way is used to download the newest version of a Laravel project.
- this way, you need the internet every time you try to create a project
A. download and install it from getcomposer.org.
B. enter into htdocs
C. type command:
I.install Laravel in your device:
composer create-project --prefer-dist laravel/laravel project-name
II.create laravel project:
laravel new project_name
OR
WAY 2:
i.used for Download one time and then create a project any time without any internet
a. enter into htdocs and open cmd, then type the command:
composer global require Laravel/installer
Laravel new project_name
HOW TO RUN A LARAVEL PROJECT
1. enter into the project folder
2. Open cmd in the project location
3.type the command : php artisan serve
0 Comments