这是laravel的关联关系出问题

原因:你没有返回关联关系,就调用了关联方法

解决:

public function xxx()
    {
        return $this->belongsTo(yyy,'外键');
    }

return 出去没有return  肯定报错

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-09-25
  • 2021-07-27
  • 2022-12-23
  • 2021-09-25
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-07-26
  • 2021-08-06
  • 2022-12-23
  • 2021-07-09
相关资源
相似解决方案