{$routeName}(); } if ($routeName !== 'home' && $routeName !== '') { throw new Exception("Route not found."); } $this->view('home', [ 'name' => $name ]); } // Static Views public function about() { $this->view('about'); } public function imprint() { $this->view('imprint'); } public function privacy() { $this->view('privacy'); } }