Google News
logo
Laravel - Interview Questions
What is MVC architecture in Laravel?
MVC architecture is a design pattern that is used to develop web applications. It consists of three components named Model, View and Controller. MVC design pattern also helps to speed up the development of the web application.
 
Model : In MVC architecture, the letter M stands for Models. Model is the central component of the MVC design pattern. It manages the data in the application.

View : In MVC architecture, the letter V stands for Views. A view displays data to the user.

Controller : In MVC architecture, the letter C stands for Controllers. A controller is used to handle user requests.
The below diagram shows the interactions within the MVC design pattern.

MVC architecture in Laravel
Advertisement