All Posts programming Laravel CLI cheat-sheet

Laravel CLI cheat-sheet

· 139 words · 1 minute read

laravel is a command-line installer for the Laravel framework.

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

More information: https://laravel.com .

I hope you enjoyed reading this post as much as I enjoyed writing it. If you know a person who can benefit from this information, send them a link of this post. If you want to get notified about new posts, follow me on YouTube , Twitter (x) , LinkedIn , and GitHub .