Hi,
I am developing a project in symfony.
In my DB I have a set of models (tables) for each geography. Each set of models is presented to user in same way. So, the view should be same for each geography.
I want to have single view for each set of models. So, is it possible to dynamically associate a model to a request based on the context of the request? If this is possible then I will need a single module and hence I will be able to avoid duplicate modules with same view and different models.
Thanks.