CDN VS Local in Laravel

cdn vs local

When you’re using Laravel, you most likely will need additional CSS or JavaScript libraries. The way you can do this is either by CDN or downloading the library and add it to your project directory. But, which one should you use? It depends on your preference. They each have their pros and cons, but the … Read more

Is Laravel UI Deprecated?

laravel ui deprecated

Laravel UI is a very simple authentication scaffolding built on the Bootstrap CSS framework (Source : Laravel UI’s Documentation). It can install Bootstrap or React or Vue for you and also provides the basic routes and views for authentication. But as new Laravel updates arrive, is this package deprecated yet? Yes. As of Laravel 8, it … 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

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