Register now or log in to join your professional community.
The framework which follow MVC pattern in simple words.
But the real question is what is MVC?
MVC is Model–view–controller is a software architectural pattern for implementing user interfaces on computers.
In which
Model : Store and retrieve data by commands from Controller and is the central component.
Controller : Get inputs from view and commands to the model and get data from the model and give it to the view.
View : It the output representation of data from model and is the visual interface what the user see.