I have quite a complex model which has many attached columns – around 40, and so I have split them up into multiple tables:
business
business_details
I was hoping I won’t have to create a BusinessDetails model and use relationship Business has_one BusinessDetails.
How do I connect business to business_details and access both through the model Business?
Are you looking for something like this?