Get started with Symfony 6 for beginners — Part 2 | Route, Controller, Rendering.

Azay Karimli
3 min readMay 9, 2022

In the last article, we have been successfully launched the Symfony application for the first time. In this part, we will take a look at the MCV concept and create our first Controller, Route, and view file with just one line.

What is MVC?

MVC (Model View Controller) is an architectural pattern that separates applications into 3 main logical components.

  • Model: corresponds to all the data-related logic that the user works with…

--

--