From 20a1fcd8d7afa19e8c71286990449ae509e9d23e Mon Sep 17 00:00:00 2001
From: filippo.bertilotti <filippobertilotti@gmail.com>
Date: Fri, 07 Jun 2024 12:41:42 +0200
Subject: [PATCH] aggiunte tutte le altre views

---
 src/App/Controllers/fiat.php |   27 ++++++++++++++++++++++++++-
 1 files changed, 26 insertions(+), 1 deletions(-)

diff --git a/src/App/Controllers/fiat.php b/src/App/Controllers/fiat.php
index f9cace6..24c0df8 100644
--- a/src/App/Controllers/fiat.php
+++ b/src/App/Controllers/fiat.php
@@ -2,9 +2,34 @@
 namespace App\Controllers;
 use Framework\Controller;
 class Fiat extends Controller {
+    
+    public function __construct()
+    {
+        
+    }
     public function index() {
-
         return $this->view("Fiat/index.mvc.php", [
         ]);
     }
+
+    public function panda() {
+        return $this->view("Fiat/panda.mvc.php", [
+        ]);
+    }
+
+    public function fiat500() {
+        return $this->view("Fiat/fiat500.mvc.php", [
+        ]);
+    }
+
+    public function tipo() {
+        return $this->view("Fiat/tipo.mvc.php", [
+        ]);
+    }
+
+    public function contact() {
+        return $this->view("Fiat/contact.mvc.php", [
+        ]);
+    }
+
 }
\ No newline at end of file

--
Gitblit v1.8.0