2

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.

5 Answers5

2
  1. Delete the vendor folder
  2. Remove the breeze from the composer.json
  3. Then composer install
Gran
  • 119
  • 1
  • 7
  • Also keep in mind that as the command "php artisan breeze:install" is equivalent to "php artisan breeze:install blade" it means that you will have to delete the .blade files added by the command inside the [resource] folder – Alex Oct 27 '22 at 08:47
  • step 3 should be getting rid of the service provider if it's there: sed -i '/Laravel\\Breeze\\BreezeServiceProvider::class/d' config/app.php – iateadonut Dec 15 '22 at 06:22
0

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

John Zwarthoed
  • 1,239
  • 7
  • 12
0
  1. Go to the Vendor folder in your directory.
  2. Delete the Vendor folder.
  3. Remove the dependency from composer.json file
  4. Reinstall the Laravel Breeze package.
0
  1. composer remove laravel/breeze
  2. composer update
  3. php artisan config:cache

To ensure that it's been uninstalled, open your composer.json file and see if laravel/breeze is no longer listed in require-dev.

Reynald Lamury
  • 165
  • 1
  • 2
  • 9
-1

You would just scroll down to the folder "vendor\laravel" and delete the laravel folder.

Denzel
  • 11
  • 3
  • As it’s currently written, your answer is unclear. Please [edit] to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Jun 01 '22 at 17:33