Forrest logo
back to the laravel tool

laravel:tldr:05260

laravel: Install the Laravel Jetstream scaffolding with support for teams.
$ laravel new ${name} --jet --teams
try on your machine

This command is used in the Laravel PHP framework to create a new project with additional features such as Jetstream and Laravel Jetstream's team scaffolding.

  • laravel new is the command to create a new Laravel project.
  • ${name} is a placeholder for the name of the project. You need to replace it with your desired project name.
  • --jet is an optional flag that indicates you want to include Laravel Jetstream during project creation. Laravel Jetstream is a beautifully designed application scaffolding for Laravel with authentication, two-factor authentication, API support, and more.
  • --teams is another optional flag that indicates you want to include team scaffolding provided by Laravel Jetstream. Teams allow you to organize users into groups and assign group permissions.

By running this command, a new Laravel project will be created with Laravel Jetstream installed, along with the additional functionality of team management.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the laravel tool