Ejemplo n.º 1
0
 /**
  * @author: lmkhang - skype
  * @date: 2016-01-11
  * Profile
  */
 public function index()
 {
     //set Title for PAGE
     $this->_page_title = 'Setting';
     //get list
     $setting_get = new \App\Config();
     $setting = $setting_get->getAll(['show' => 1, 'del_flg' => 1]);
     //DATA
     $home_get = new \App\Home();
     $stats_show = $home_get->getAll(['prefix' => 'stats_show', 'del_flg' => 1]);
     return view('admin.setting.index', ['admin' => $this->_admin, 'name' => $this->getName(), 'page_title' => $this->_page_title, 'active' => $this->_active, 'setting' => $setting, 'stats_show' => $stats_show]);
 }