Skip to main content
ArticlesProjects
Tag Archive

Articles Tagged: design-patterns

Technical writings, opinionated architectures, and development guides tagged with design-patterns.

Articles9
Est. Read Time61 mins
Categories2
Featured1
Feb 20263 min read
PHP

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.

Oct 20259 min read
Laravel

Building modular systems in Laravel - A practical guide

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

Jan 20234 min read
Laravel

Reducing code duplication

Learn to reduce code duplication in Laravel using artisan commands and services for better code quality.

Dec 20229 min read
Laravel

Effective Eloquent

Explore advanced Eloquent querying in Laravel with a focus on efficient ORM usage for a banking app, including user accounts and transactions management.

Nov 20227 min read
Laravel

Reaching for Facades

Demystify Laravel Facades and harness them for clear, efficient code and Laravel's unique features.

Sept 202210 min read
Laravel

Writing to the Database with Eloquent

Learn methods of writing to the database using Laravel's Eloquent ORM for effective database interactions.

Jul 20224 min read
Laravel

Using Route Registrars in your Laravel application

Enhance Laravel route management with Route Registrars. Simplify route registration and organization for cleaner and more efficient code.

May 20228 min read
Laravel

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
PHP

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.