Could you explain how a normal MVC framework works in general? For example, how do you handle a request and send a final response to the end users via the MVC structure?
Sigiloso
I simply said that I setup a route in the router file, which will then point any request to this route to a controller. Controller will handle the business logic and retrieve data from a Model if needed, then render the respond with the View.