laravel belongsTo gives null

前端 未结 3 1909
小蘑菇
小蘑菇 2021-01-27 06:55

belongsTo relation in laravel is returning null

public function games(){
    return $this->belongsTo(\'App\\Models\\Game\');
  }

but when i

3条回答
  •  隐瞒了意图╮
    2021-01-27 07:47

    In my case, i was using public for defining variables. When I change to protected it worked.

    public $fillable = [..class properties..];
    

    changed to

    protected $fillable = [..class properties..];
    

提交回复
热议问题