I have three database tables, settings
, webmaster
and processes
.
The first two have a HasMany/BelongsTo relationship. The latter two have a HasOne/HasOne relationship.
When using my Settings model, I can reach records within Webmaster using settings.webmaster.id
, for instance. However, how can I reach Processes?
Using settings.webmaster.processes.name
for instance, doesn't seem to work.