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.
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.
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
composer remove laravel/breeze
composer update
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.
You would just scroll down to the folder "vendor\laravel" and delete the laravel folder.