This is a very general Cakephp question. I'm attempting to combine the model data from many different models into a given page.
I'm building a simple content-manager for my boss's online-CV so he can manage it from a simple GUI. So I have models for all the different sections of the CV, but need to combine the data from each model on a single page or via a single controller method.
My intuition is that I've either got to build a model for 'cv' (though there will only ever be one) and build the appropriate hasMany/belongsTo associations into a 'cv' and the content models respectively, or else to build a static page that is capable of making requests of model controllers individually. The former seems unnecessarily work-intensive given how small the project is, but in the latter case I don't know how to make requests of controllers to provide model data to a page. I'm sure this is dead simple, I just can't find the answer! Thanks!