In this article, we will see how to remove the package from laravel. there are different ways to remove packages from laravel 6, laravel 7, laravel 8, and laravel 9. You can remove packages manually as well as you can remove the packages using the composer command.
So, let's see how to remove the package using the composer command and laravel remove package.
Composer is most useful for managing the package in the laravel application. Using composer you can install, update and remove packages from the laravel application. This is more powerful, fast, and fully compatible with older versions.
You can remove all packages no longer required in your laravel application. So, run the below command and remove the package from the vendor folder.
composer remove vendor/package name
Example:
composer remove laravel/ui
This will remove the line from your compser.json
file and also remove files from the vendor
folder.
After this, we will run the following command.
php artisan config:cache
OR
php artisan cache:clear
php artisan config:clear
php artisan route:clear
php artisan view:clear
You can manually remove the package from laravel. So, run the following step and remove the package from the laravel application.
You might also like:
In this article, we will see how to send bulk mail using a queue in laravel 8. Laravel queue is used for sending bu...
Feb-10-2021
It can be hard to find the best VPS hosting UAE provider with global data centers in today’s market. The majority...
Jun-26-2024
In this article, we see how to integrate razorpay payment gateway in laravel 9. As you all know if you are developi...
Apr-11-2022
Creating an auto-generating slug using Laravel Livewire is a practical and efficient way to handle slugs for your applic...
Oct-27-2023