Weird Runway Relationship for Specific Models #514
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
I have a couple of ideas of things you could try....
|
Beta Was this translation helpful? Give feedback.
I have a couple of ideas of things you could try....
In terms of the relationship, the best practise is to use "camel case" for the relationship method names. So instead of
service_provider
, try usingserviceProvider
:Also, you have the "belongs to" here pointing at the
ServiceProviderDomain
model, should it not be pointing at yourServiceProvider
model?Regarding the reference to the related resource in your blueprint:
In Runway v6, resource handles (which is what you're using here) don't include unders…