Ejemplo n.º 1
0
 public function showIndividualRecipe()
 {
     $recipe = new Recipes((int) $_GET['id']);
     $newcomment = $this->getCommentFormData();
     $comments = $recipe->comments();
     // $tags = $recipe->getTags();
     $view = new SingleRecipeView(compact('id', 'recipe', 'newcomment', 'comments', 'tags'));
     $view->render();
 }