Hi Isomis,
Welcome to the laravel community
for question one 1 laravel does not tell you to use any type of file structure its up to the developer the orginal app is just to provide people new to laravel a starting point but if you want you can split it up into usercases/domain objects a good example is the laravelio repo where you can find a copy of this site
Not sure what you mean with a BlogManager/BlogService
you can load Repos or any classes the same way you would usualy do
as laravel uses composer and teh auto load function that comes with it
Hope this helps
Regards
Timothy
I want to use a Manager/Service for functions like:
getForm() getImageByPosition()
In my opinion this functions are not on the right place in a controller, model or repo. This service/manager layer is the communication between the controller and the models with there repo's.
Laravel does not force to organize a structure of directory. You can put all anywhere you want to put in . Just, you should use a autoload using a composer.
For instance, when you create a user service, you can put it in app/Services/UserService Directory then You should describe UserService to autoload it in composer.json.
This links will save you.
Thank you.
Hey isomis, I came from Symfony as well and found comfort in the structure I wrote about here: http://dfg.gd/blog/decoupling-your-code-in-laravel-using-repositiories-and-services
In Laravel you have a lot of freedom and can adapt it to work how you like, there are no right answers, so play around!
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community