Skip to main content
WritingSpeakingCodeAboutNow
Category Archive

Articles: Architecture

Technical writings, opinionated architectures, and development guides focusing on Architecture.

Articles43
Est. Read Time418 mins
Tags85
Featured0
Feb 20263 min read

The Pattern-First Trap in PHP

Why starting with design patterns too early can overcomplicate PHP apps, and a practical way to design from constraints instead.

Feb 202614 min read

Your PHP application is not stateless

Understanding statelessness in PHP: filesystem assumptions, session state, and building truly stateless applications with Zero Trust principles.

Jan 202611 min read

Event-driven architecture with domain-driven design

Learn how to implement event-driven architecture using domain-driven design principles to build scalable and maintainable systems.

Oct 20259 min read

Building modular systems in Laravel - A practical guide

Learn how modular architecture transforms Laravel apps into scalable, maintainable systems.

Sept 202512 min read

How I Would Have Built Laravel Cloud

Explore an alternative approach to Laravel Cloud architecture, balancing simplicity with flexibility.

Jul 20257 min read

Multi-tenancy Without the Hassle

Learn how to build a multi-tenant application in Laravel using Sprout, avoiding the common pitfalls of manual tenant management.

Mar 20238 min read

Modelling Business Processes in Laravel

Simplify complex business processes in Laravel using pipelines for clean and elegant code.

Feb 20235 min read

Managing Routes in a large Laravel Application

Learn strategies like Route Service Provider, File Requires, and Route Groups for managing routes in a large Laravel application.

Sept 20226 min read

Setting up your Data Model in Laravel

Master the art of Laravel data modeling and build a meeting room booking system with this comprehensive tutorial.

Aug 202216 min read

Event Sourcing in Laravel

Master Event Sourcing in Laravel with this comprehensive guide, perfect for enhancing PHP projects with advanced data tracking and state management techniques.

May 20228 min read

Laravel Command Bus

Implement Command Bus in Laravel for efficient code management. Learn to create command handlers and integrate them seamlessly into your projects.

May 20227 min read

Adapter Pattern

Explore the adapter design pattern in coding through a practical example of building a versatile social poster class, adaptable for different social networks.