Tag
#Architecture
3 posts

August 29, 2025
Hexagonal Architecture in Laravel: Code That Lasts Longer Than Frameworks
Laravel makes it easy to ship fast, but that often leads to tight coupling between business logic and infrastructure. Hexagonal Architecture (Ports & Adapters) helps by separating your core domain from frameworks and vendors, making tests faster, integrations swappable, and long-term maintenance smoother. In this blog, we'll break down what Hexagonal means in Laravel terms, where it shines, where it's overkill, and how it compares with MVC and other approaches.
January 10, 2025
Getting Familiar with Event Sourcing in Laravel
Event sourcing is a powerful architecture pattern for handling complex data changes over time. This blog will introduce you to the principles of event sourcing and demonstrate how to use it in your Laravel applications with the Spatie package.
May 1, 2024
monolith vs. microservices: choosing the right foundation for your app
Understanding the strengths and weaknesses of each architecture to build a scalable and maintainable application.