Today the Laravel team released a new major version of “laravel/installer” that includes support for quickly starting Jetstream projects. With this new version when you run “laravel new project-name” you’ll get Jetstream options. For example:
1laravel new foo --jet --dev
Then it’ll ask you which Jetstream you prefer:
1Which Jetstream stack do you prefer?2 [0] Livewire3 [1] inertia4> livewire56Will your application use teams? (yes/no) [no]:7...
If you already have the installer installed, to get the version all you should need to run is composer global update
but that didn’t work for me. Instead, I had to uninstall then reinstall:
1composer global remove laravel/installer2composer global require laravel/installer
Filed in: