MVC Design Question
Hello, I would like to move an web application to MVC Laravel 4 (not sure yet). The challenge is that the application is used by many customers and each customer have its own website/front-end but they all use the same backend/admin.
The strucutre is something like this...
backend.domain.com (all customers go to here to update their site)
www.cliente1.com (a folder on the server with customized hml, css, etc that access the share PHP code)
www.cliente2.com (a folder on the server with customized hml, css, etc that access the share PHP code)
www.cliente3.com (a folder on the server with customized hml, css, etc that access the share PHP code)
So basically the question is: can i use MVC for this type of solution? if so, what would be your recomendation from a design stand point
Thanks!