belongsTo('Stadium', 'gym_id', 'id', [], 'LEFT')->setEagerlyType(0); } public function club() { return $this->belongsTo('Club', 'club_id', 'id', [], 'LEFT')->setEagerlyType(0); } public function activity() { return $this->belongsTo('Activity', 'act_id', 'id', [], 'LEFT')->setEagerlyType(0); } public function game() { return $this->belongsTo('Game', 'game_id', 'id', [], 'LEFT')->setEagerlyType(0); } }