How to Remove a Package in Laravel

laravel remove package

When you build a Laravel project, there might be times when you installed a package that you actually don’t need. So, you want to uninstall it. But, how? Run ‘composer remove package/vendor’ command in your terminal with your package and vendor name. If you’ve published your vendor, you’ll have to delete the published files manually. … Read more

Laravel Project Structure Explained

laravel project structure

When you create a Laravel project or application, you’ll see there’s a lot of folders and files in it. You might be confused as to what each folders are for, which folders should be modified or left as is. Well, let’s dive into that together. Note : the version I’m using and explaining is Laravel … Read more