Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Laracast13's avatar

Switch laravel breeze to jetstream

Hi Using breeze

composer require laravel/breeze --dev
php artisan breeze:install

How I can switch , I can run this command or need first delete breeze?

composer require laravel/jetstream
php artisan jetstream:install livewire
0 likes
5 replies
vincent15000's avatar

No idea ... you can work on another git branch and test ?

3 likes
jlrdw's avatar

The starter kits will normally require it be a new project.

However with some manual work it is possible, Backup first so you have your routes. You still need to rewrite but you will know what they were.

I suggest however a new project.

3 likes
Laracast13's avatar

@jlrdw It will change route and migration for user table. but this can make any problem with functionality Laravel ?

sr57's avatar
sr57
Best Answer
Level 39

@www888

Breeze and Jetstream are starter kits , not package. Both do a lot stuff in your code (start 2 fresh projects and use diff to see them).

Of course you can remove all these codes manually but clearly, it's easier and faster and bug free to create a new frsh project and copy your personnal code (migrations, controllers, views, ...)

2 likes
petitemo's avatar

Hi! It's maybe too late but you can see on Jetstream documentation :

New Applications Only

Jetstream should only be installed into new Laravel applications. Attempting to install Jetstream into an existing Laravel application will result in unexpected behavior and issues.

https://jetstream.laravel.com/2.x/installation.html

Please or to participate in this conversation.