Konf.app logo

Konf.app

Konf.app is my first SaaS product. It is a tool to manage all of your applications' configurations in one place with powerful features and a beautiful and intuitive UI.

Topic: backend


Laravel AaaS - Actions as a Service
by Wendell Adriel - Jan 23, 2023 1850 words - 10 minutes read

Action classes and Invokable Controllers are a hot topic in Laravel nowadays. In this article I'll explain why I think Invokable Controllers are a bad idea and an architectural pattern I created and named as AaaS.


Laravel Collections: The Artisan's Guide
by Wendell Adriel - Jan 16, 2023 1787 words - 9 minutes read

Laravel Collections are really powerful for working with arrays of data. Let's learn how to use the methods they provide to improve our applications.


API Versioning in Laravel
by Wendell Adriel - Dec 29, 2022 242 words - 2 minutes read

Have you ever heard of API versioning? This is very handy when you need to add an alternative logic for some endpoints but want to keep the current logic for some users. Let's learn a simple way to achieve that in Laravel.


Standard API Responses With Laravel Responsables
by Wendell Adriel - Dec 21, 2022 390 words - 2 minutes read

Data structure standards are the way to go for having good maintainability in our applications. Let's learn how we can use Laravel Responsables to create standardised API responses for our applications.


Data Transfer Objects in Laravel - Why and How
by Wendell Adriel - Dec 16, 2022 747 words - 4 minutes read

Data Transfer Objects can be a great way to improve your applications. Let's learn why and how to use them in Laravel.