snippetbashTip
laravel — Installer for the Laravel framework. More information: <https://laravel.com/docs/installation>.
Viewed 0 times
thecommandinstallerlaravelframeworkclifor
Problem
How to use the
laravel command: Installer for the Laravel framework. More information: <https://laravel.com/docs/installation>.Solution
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}} --devOverwrite if the directory already exists:
laravel new {{name}} --forceInstall the Laravel Jetstream scaffolding:
laravel new {{name}} --jetInstall 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 --teamsList the available installer commands:
laravel listCode Snippets
Create a new Laravel application
laravel new {{name}}Use the latest development release
laravel new {{name}} --devOverwrite if the directory already exists
laravel new {{name}} --forceInstall the Laravel Jetstream scaffolding
laravel new {{name}} --jetInstall the Laravel Jetstream scaffolding with a specific stack
laravel new {{name}} --jet --stack {{livewire|inertia}}Context
tldr-pages: common/laravel
Revisions (0)
No revisions yet.