In the previous two chapters, you learned how to create your environment so that you can use Composer to install fresh Laravel applications, and you learned many more other nitty-gritty details of Laravel. You also are now familiar with the concepts of the Model-View-Controller (MVC) logic system.
In this chapter, you will learn how Laravel follows the MVC pattern.
To enter an application, you need to have an entry point. The basic algebraic definition of function works here: you give input to a function, and you get output. When applying this to Laravel, you can replace ...