mvc_rest_api/ ├── app/ │ ├── Controllers/ # Controller classes │ ├── Models/ # Model classes │ ├── Middleware/ # Middleware classes │ └── Config/ # Configuration files ├── core/ # Core framework files ...
This is an educational project designed to practice building a complete REST API using the MVC architectural pattern. The API handles CRUD operations for a subscriber management system with proper ...