I have the following database tables:
Since these are so close connected I want to create one model that uses all of these.
Is this possible in CakePHP? And if so how?
You can add relations between models in cakephp by association.
Here's the reference page
Good luck!