Files
tldr/pages.zh/common/laravel.md

32 lines
626 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# laravel
> Laravel框架的命令行安装程序。
> 更多信息:<https://laravel.com>。
- 创建一个新的Laravel应用程序
`laravel new {{name}}`
- 使用最新的开发版本:
`laravel new {{name}} --dev`
- 如果目录已存在则覆盖:
`laravel new {{name}} --force`
- 安装Laravel Jetstream脚手架
`laravel new {{name}} --jet`
- 使用特定栈安装Laravel Jetstream脚手架
`laravel new {{name}} --jet --stack {{livewire|inertia}}`
- 安装支持团队的Laravel Jetstream脚手架
`laravel new {{name}} --jet --teams`
- 列出可用的安装程序命令:
`laravel list`