How to remove a package in Laravel
Categorized as Laravel
The best and clean way is to run the terminal command that composer documentation tells:
composer remove vendor/package
You can also remove multiple packages in a row:
composer remove vendor/package vendor/package2 vendor/package3
Also, don’ forget to remove code that utilizes the package.