2025-03-14 21:59:59 -06:00
|
|
|
# laravel
|
|
|
|
|
|
|
|
|
|
> A command-line installer for the Laravel framework.
|
2025-05-08 12:26:01 -06:00
|
|
|
> More information: <https://laravel.com/docs/installation>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- 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`
|