Forrest logo
back to the laravel tool

laravel:tldr:54dbf

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

The command "laravel new ${name} --jet" is a command used in the Laravel framework to create a new Laravel application with the Laravel Jetstream starter kit.

Here's what each part of the command does:

  • "laravel new" is the Laravel CLI command to create a new Laravel application.
  • "${name}" is a placeholder for the desired name of your Laravel application. You will replace "${name}" with the actual name you want to give to your application.
  • "--jet" is an option that tells Laravel to include the Laravel Jetstream package along with the installation. Laravel Jetstream is a scaffolding package that provides authentication and user management features.

So when you run this command with your desired application name, it will create a new Laravel application and include the Laravel Jetstream package, which gives you an already set-up authentication system and user management functionality to start building your application with.

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