Tutorials

Tutorials written by Mizan

5 Essential Tips to Master the Node.js Repository Pattern

Node.js API with Repository Design Pattern

When working on large-scale Node.js applications, developers often face problems maintaining clean separation between business logic and database operations. The Repository Design Pattern solves this by introducing a middle layer that isolates the data access logic, improving scalability, testability, and…

Read More5 Essential Tips to Master the Node.js Repository Pattern

SOLID Principles in Laravel: Practical Examples & Refactoring

Overview Diagram of SOLID Principles

Why SOLID matters in Laravel? As Laravel projects grow, controllers and models can quickly become hard to change and test. SOLID principles help you keep code maintainable, flexible, and testable. In this tutorial we’ll walk through each principle with real…

Read MoreSOLID Principles in Laravel: Practical Examples & Refactoring