标签: must return a relationship instance
-
在 Laravel 6 中遇到 ThemeInstallation::isCodeEdited must return a relationship instance 错误。经检查模型文件,发现调用关系时未使用方法语法。最终定位问题在于代码中使用了 $theme->themeInstallation->isCodeEdited,解决方法是在 isCodeEdited 后添加括号,将其修改为方法调用形式。
