Laravel: Difference between revisions
Created page with "Laravel is the most popular PHP framework.<br> [https://laravel.com Website] =Usage= ==Installation== <syntaxhighlight lang="bash"> composer global require laravel/installer..." |
No edit summary |
||
Line 19: | Line 19: | ||
npm install | npm install | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==Copying an existing project== | |||
Revision as of 17:01, 25 September 2019
Laravel is the most popular PHP framework.
Website
Usage
Installation
composer global require laravel/installer
Creating a new project
Run the following commands.
Initialize a laravel project then cd
into your project folder and install all php and node dependencies.
Then point your webserver to your project's public folder or run php artisan serve
to start a local development server.
laravel new my-project
# Equivalent to
# composer create-project --prefer-dist laravel/laravel my-project
cd my-project
composer install
npm install