/**
  * third sequence 
  * Method untuk menampilkan manage data tenant
  */
 public function actionAdmin()
 {
     $model = new Tenant('search');
     $model->unsetAttributes();
     if (isset($_GET['Tenant'])) {
         $model->attributes = $_GET['Tenant'];
     }
     $this->renderPartial('_admin', array('model' => $model, false, true));
 }