/**
  *
  * @param Recipe $recipe
  * @return \League\Fractal\Resource\Collection
  */
 public function includeIngredients(Recipe $recipe)
 {
     $ingredients = $recipe->getIngredients();
     return createCollection($ingredients, new IngredientTransformer());
 }