diff --git a/app/Models/IngredientAmount.php b/app/Models/IngredientAmount.php index 3931629..47a59f1 100644 --- a/app/Models/IngredientAmount.php +++ b/app/Models/IngredientAmount.php @@ -103,7 +103,7 @@ final class IngredientAmount extends Model $summary = []; foreach (Nutrients::all() as $nutrient) { $amount = round($this->{$nutrient['value']}(), 2); - $summary[] = "{$nutrient['label']}: {$amount}"; + $summary[] = "{$nutrient['label']}: {$amount}{$nutrient['unit']}"; } return implode(', ', $summary); }