belongsToMany('Hardskill\Sector\Models\Craft'); } /** * The positions that belong to the sector. */ public function positions(){ return $this->hasMany('Hardskill\Sector\Models\Position'); } /** * The hardskils that belong to the sector. */ public function hardskils(){ return $this->hasMany('Hardskill\Sector\Models\Hardskill'); } }