LinuxCommandLibrary

laravel

laravel

TLDR

Create a new Laravel application

$ laravel new [name]
copy


Use the latest development release
$ laravel new [name] --dev
copy


Overwrite if the directory already exists
$ laravel new [name] --force
copy


Install the Laravel Jetstream scaffolding
$ laravel new [name] --jet
copy


Install the Laravel Jetstream scaffolding with a specific stack
$ laravel new [name] --jet --stack [livewire|inertia]
copy


Install the Laravel Jetstream scaffolding with support for teams
$ laravel new [name] --jet --teams
copy


List the available installer commands
$ laravel list
copy

Copied to clipboard