Concept Flow - Why controllers handle requests
Browser sends HTTP request
Rails router receives request
Router finds matching controller & action
Controller action runs
Controller processes data & prepares response
Controller sends response back to browser
This flow shows how a web request travels from the browser to the Rails controller, which handles it and sends back a response.