Is there a difference between services, plugins and modules within a mvc framework framework?

-2

I'm studying the mvc structure and I'm trying to see some examples of how to structure some projects and I've had some doubts.

I saw that in some frameworks, they put classes with auth, router, template in the services folder!

In others put them in the modules or plugins folder!

Well, my question is if there is any difference between plugins, services and modules within the framework of a mvc framework?

Thanks in advance for your help!

    
asked by anonymous 06.11.2018 / 23:40

1 answer

-1

Services is something related to the services of your application such as: Generate a boleto bancário, generate a pdf document etc ...

Plugins are services too, but they are something third-party service ready that you picked up from somewhere.

And modules, is for you to modulate your project. For example, in your project you can have the Financial Module, Customers, Products, Users and so on.

I hope I have helped Greetings,

    
06.11.2018 / 23:51