add(TwigMiddleware::create($app, $twig)); //Dashboard Index $app->get('/dashboard', function (Request $request, Response $response) { $index = new IndexControl(); $settings = new Settings(); $folks = $settings->getFolks(); $secret = $index->getSecret(); $view = Twig::fromRequest($request); return $view->render($response, 'index.twig', [ 'title' => 'This is Fipamo', 'name' => 'Ro', 'occupation'=>'pretty cool... I guess', 'folks' => $folks[0]['handle'], 'secret' => $secret ]); }); $app->run();