1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-02 08:35:24 +02:00
tldr/pages/common/laravel.md
Managor 23340cc6e0
common/*: reduce usage of "command-line" (part 1) (#16949)
Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com>
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
2025-06-29 11:48:18 +03:00

32 lines
687 B
Markdown

# laravel
> 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`