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
If git
is used in the project, it will be easy to revert.
composer install
npm install
It can be reverted without git
as well.
breeze
installation, then delele those manually. Normally the following files and folders are created or modified. And revert the changes of the modified files (althought it's very complicated). created: app/Http/Controllers/Auth/
created: app/Http/Controllers/ProfileController.php
created: app/Http/Requests/
created: app/View/
created: package-lock.json
created: postcss.config.js
created: resources/views/auth/
created: resources/views/components/
created: resources/views/dashboard.blade.php
created: resources/views/layouts/
created: resources/views/profile/
created: routes/auth.php
created: tailwind.config.js
created: tests/Feature/Auth/
created: tests/Feature/ProfileTest.php
created: tests/Pest.php
modified: app/Providers/RouteServiceProvider.php
modified: composer.json
modified: composer.lock
modified: package.json
modified: resources/css/app.css
modified: resources/js/app.js
modified: resources/views/welcome.blade.php
modified: routes/web.php
modified: tests/Feature/ExampleTest.php
modified: tests/Unit/ExampleTest.php
modified: vite.config.js
composer remove laravel/breeze
npm install