What is Algorithm And Why is It Important?

algorithms

When you’re learning programming, you’ll inevitably stumble upon algorithm. But, what is it and why is it so important? Algorithm is a set of procedure to accomplish a task. It gives step-by-step instructions to do something. For example, to sort numbers, you find the smallest number, put it in the first position, find the second … Read more

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

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