belongsTo(\App\Variation::class, 'variation_id'); } /** * Get the unit associated with the ingredient. */ public function sub_unit() { return $this->belongsTo(\App\Unit::class, 'sub_unit_id'); } /** * Get the ingredient group associated with the ingredient. */ public function ingredient_group() { return $this->belongsTo(\Modules\Manufacturing\Entities\MfgIngredientGroup::class, 'mfg_ingredient_group_id'); } }