I'm learning Symfony and I came across one issue and I couldn't find an answer: I'm taking as an example the Jobeet tutorial from Jobeet-1.4-Doctrine-en.
On day 3 [ day 3 ]: It's all about the model and this where I am stuck When generating the frontend, the following command is run:
$ php symfony doctrine:generate-module --with-show --non-verbose-templates frontend job JobeetJob
It generates the module 'job' in accordance with the provided module 'JobeetJob'
My question now is: I have an another module called 'JobeetArticles' where people can learn how to write better CV and such things. I want to have both data from 'JobeetJob' and 'JobeetArticles' available for the 'job' module. How can i accomplish that? I hope my question is clear
Regards