-
Notifications
You must be signed in to change notification settings - Fork 11.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Undefined property when belongs to fk name matches relation name #31098
Comments
I think this is a known limitation. How would Eloquent know if |
Hi @36864, I didn't see any mentions of this in the docs or in existing issues so I opened an issue.
In this example Eloquent is accessing the property itself and it knows it wants to fetch the property, not the relationship. |
But if in your code you try to access Just use a different name for either the relation or the property. |
But if in your code you try to access $user->state, are you trying to get the property or the relationship? How do you get the other? In this case I would expect This is how it works currently if you fetch the model from the database or instantiate it with the property explicitly set.
If I could easily use a different property name I would but I'm working in an existing codebase with an existing database; refactoring everything is rather difficult at this point. This issue doesn't seem too difficult to fix (i.e. calling |
I am 0/2 today on this type of issue, sorry. Traced the issue to framework/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php Lines 326 to 331 in 917ee51
This is called from the magic This appears to be intentional, but maybe it can be changed? |
Hey @matt-allan, this is indeed not supported but you're right that the docs aren't clear on this. I also didn't find a note immediately. I've sent in a PR to clarify this at the top of the relationship docs. Thanks for reporting. |
Description:
When the foreign key name for a belongsTo relation is the same as the relationship name, accessing the relationship method throws an undefined property error unless the field has previously been set (i.e. when fetching from the database).
Steps To Reproduce:
In a standard Laravel app add the following method to
App\User
:Open a tinker shell and attempt to access the
state
property or thestate
methodHere's the stack trace:
Expected output:
null
BelongsTo
relationNote that the error does not occur if the property has been set, either manually or when fetching from the database.
I pushed a sample app with seeds, migrations, etc here.
The text was updated successfully, but these errors were encountered: