From 7baa142488879722eaffe263ddc064072f4df973 Mon Sep 17 00:00:00 2001
From: filippo.bertilotti <filippobertilotti@gmail.com>
Date: Tue, 14 May 2024 10:23:53 +0200
Subject: [PATCH] autodichiarazione delle dipendenze (auto wiring) (parte 83)

---
 src/App/Controllers/products.php |   13 +++++++++----
 1 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/src/App/Controllers/products.php b/src/App/Controllers/products.php
index 471c695..b9191a2 100644
--- a/src/App/Controllers/products.php
+++ b/src/App/Controllers/products.php
@@ -3,18 +3,23 @@
 use App\Models\Product;
 use Framework\Viewer;
 class Products {
+    public function __construct(private Viewer $viewer, private Product $product) { }
     public function index() {
 
         $model = new Product;
         $products = $model->getData();
 
-        $viewer = new Viewer;
-        $viewer->render("products_index.php", $products);
+        echo $this->viewer->render("shared/header.php");
+        echo $this->viewer->render("Products/index.php", [
+            "products"=> $products
+        ]);
     }
 
     public function show(string $id) {
-        var_dump($id);
-        require "views/products_show.php";
+        echo $this->viewer->render("shared/header.php");
+        echo $this->viewer->render("Products/show.php", [
+            "id"=> $id
+        ]);
     }
 
     public function showPage(string $title, string $id, string $page) {

--
Gitblit v1.8.0