0 votes
in Laravel by
What is MVC framework?

1 Answer

0 votes
by

It is Model, View, and Controller:

  1. Model: Model defines logic to write Laravel application.
  2. View: It covers UI logic of Laravel application.
  3. Controller: It is work as an interface between Model, and View. It is a way how the user interacts with an application.
...