Home > Mobile >  Laravel. How to reverse `php artisan breeze:install`
Laravel. How to reverse `php artisan breeze:install`

Time:04-28

I have ran php artisan breeze:install but I want to reverse it so I can install vue: php artisan breeze:install vue.

How to reverse the php artisan breeze:install command. Any help would be appreciated. Thank you.

CodePudding user response:

  1. Delete the vendor folder
  2. Remove the breeze from the composer.json
  3. Then composer install

CodePudding user response:

I think removing the blade files that are created and running the install command again should do the job, maybe some of the controllers have to be removed too.

Edit: Removing breeze from the composer dependecies won’t help as you are trying to install it with vue

  • Related