What is: MVC

MVC is a design pattern, it stands for Model – View – Controller. It separates the business logic and presentation layer from each other.

Model
It manages the data, logic and rules of the application.

View
It renders the visual layout for the user, these are basically templates.

Controller
It accepts user requests, interacts with the model and selects the view for response.

 

Recent articles

loading
×