We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In that upgrade when you call a MorphTo inside the with model parameter like:
` /** * @var array */ protected $with = [ 'OrderMorph' ];
/** * @return \Illuminate\Database\Eloquent\Relations\MorphTo */ public function OrderMorph() { return $this->morphTo(); }
`
and the model is resolved, then it also calls the same relation OrderMorph inside the MorphTo entity so it leads to a Builder::MorphTo() not found.
If you revert to 5.2.33 it works.
The text was updated successfully, but these errors were encountered:
This should be resolved in #13737.
Sorry, something went wrong.
@lelu85 this is now in the latest tagged version, 5.2.35.
No branches or pull requests
In that upgrade when you call a MorphTo inside the with model parameter like:
`
/**
* @var array
*/
protected $with = [
'OrderMorph'
];
`
and the model is resolved, then it also calls the same relation OrderMorph inside the MorphTo entity so it leads to a Builder::MorphTo() not found.
If you revert to 5.2.33 it works.
The text was updated successfully, but these errors were encountered: