Example #1
0
 public function index()
 {
     $model = new \App\Model\Projects($this->request, $this->response, $this->db);
     $model->loadIndexPageData();
     $model->loadProjects();
     $view = new \App\View\Projects($this->request, $this->response, $this->renderer, $model->getModelData());
     $view->generateList();
     $view->create('index');
 }