1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/laravel.md
Antti Savolainen 86d1784d6a batch2
2025-04-28 22:21:26 +03:00

702 B

laravel

A command-line installer for the Laravel framework. More information: https://laravel.com/docs/installation.

  • Create a new Laravel application:

laravel new {{name}}

  • Use the latest development release:

laravel new {{name}} --dev

  • Overwrite if the directory already exists:

laravel new {{name}} --force

  • Install the Laravel Jetstream scaffolding:

laravel new {{name}} --jet

  • Install the Laravel Jetstream scaffolding with a specific stack:

laravel new {{name}} --jet --stack {{livewire|inertia}}

  • Install the Laravel Jetstream scaffolding with support for teams:

laravel new {{name}} --jet --teams

  • List the available installer commands:

laravel list