0
How should the folders be named in MVC? In upper or lower case letters? And the files? How should they be named? The controllers, must have 'Controller' at the end or just the name? And the models appointment? Must be singular and contain 'Model' at the end of the file name or only its name?
I found some information in PHP-FIG regarding file naming, but not in the MVC structure
There is no rule that dictates this, you can implement it in the way that best suits your needs. MVC is a concept (an idea/philosophy), it is not concrete, so it does not dictate anything about how the implementation will be.
– Woss
I always use the Laravel pattern because I feel more comfortable. Each one uses what you think best.
– Jhonny