diff --git a/app/Http/Resources/IngredientResource.php b/app/Http/Resources/IngredientResource.php index 14c76edd..20ad3d32 100644 --- a/app/Http/Resources/IngredientResource.php +++ b/app/Http/Resources/IngredientResource.php @@ -24,7 +24,7 @@ public function toArray($request) 'slug' => $this->slug, 'name' => $this->name, 'strength' => $this->strength, - 'description' => $this->description, + 'description' => e($this->description), 'origin' => $this->origin, 'main_image_id' => $this->images->first()->id ?? null, 'images' => ImageResource::collection($this->images),