Hello
I want to migrate from ZF1 to laravel 4.3 but as my current ZF1 instance is composed by 9 modules i have some architecture trouble with laravel.
I wanna know if laravel 4.3 is built with a modules vision (maybe with psr4) and how to deal with it. the "out of the app" view directory make me doubt about it.
need something like :
Good question, I also have an interest in it for my next project. Does anyone know the answer?
maybe in routes.php u can use:
switch($host) {
case ('site1.com'):
require '/app1/routes.php'
case ('site2.com'):
require '/app2/routes.php'
}
and in routes you can store Controllers inforamtion
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community