belongsTo('Players','player_id', 'id', [], 'LEFT')->setEagerlyType(1); } public function players() { return $this->belongsTo('Players','player_id', 'id', [], 'LEFT')->setEagerlyType(0); } public function club() { return $this->belongsTo('Club','club_id', 'id', [], 'LEFT')->setEagerlyType(1); } public function clubs() { return $this->belongsTo('Club','club_id', 'id', [], 'LEFT')->setEagerlyType(0); } }