人間関係について以下に説明できることを理解している限り、詳しく説明してください
public function qtyTypes()
{
return $this->belongsToMany('App\TIngredientType', 'pivot_table_name',
'main_table_id', 'TIngredientType_id');
}
public function qtyType()
{
return $this->hasOne('App\TIngredientType');
}