corso https://vola.udemy.com/course/php-mvc-from-scratch/learn/lecture/40931984#overview
filippo.bertilotti
2024-05-15 8cb4bd47128f836255687a635f76c0e6fd3dc643
src/App/Controllers/products.php
@@ -1,16 +1,27 @@
<?php
namespace App\Controllers;
use App\Models\Product;
use Framework\Viewer;
class Products {
    public function __construct(private $viewer, private Product $model) { }
    public function index() {
        require "src/models/product.php";
        $model = new Product;
        $products = $model->getData();
        $products = $this->model->getData();
        require "views/products_index.php";
        echo $this->viewer->render("shared/header.php");
        echo $this->viewer->render("Products/index.php", [
            "products"=> $products
        ]);
    }
    public function show() {
        require "views/products_show.php";
    public function show(string $id) {
        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) {
        echo $title, " ", $id, " ", $page;
    }
}