Por favor, descreva mais até onde eu entendo que você pode fazer abaixo para relacionamentos
public function qtyTypes()
{
return $this->belongsToMany('App\TIngredientType', 'pivot_table_name',
'main_table_id', 'TIngredientType_id');
}
public function qtyType()
{
return $this->hasOne('App\TIngredientType');
}