Which Laravel Version Should You Use?

which laravel version

When using Laravel, you’ll notice that there are many versions of it (The latest is version 9 by the time of writing this blog). Which one should you use? The latest one or the previous versions? When choosing which Laravel version to use, preferably you should stick with the latest stable version. But, if you … Read more

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