'boolean', 'additives_n' => 'integer', 'ingredients_from_palm_oil_n' => 'integer', 'ingredients_that_may_be_from_palm_oil_n' => 'integer', 'nutriscore_score' => 'integer', 'nova_group' => 'integer', ]; public function ingredients() { return $this->hasMany(Ingredient::class); } public function nutritionFacts() { return $this->hasMany(NutritionFact::class); } }