getData(); echo $this->viewer->render("shared/header.php"); echo $this->viewer->render("Products/index.php", [ "products"=> $products ]); } 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; } }