예제 #1
0
 /**
  * Show the services
  * @throws \Exception
  */
 public function services()
 {
     $services = new Service();
     $services->fetchAll();
     $this->to_tpl['services'] = $services->list;
     $this->template = "admin/services-list";
     return;
 }