public function buildBaseQuery() { $query = parent::buildBaseQuery(); return $query; }
public function actions() { $ats = parent::actions(); return ['index' => $ats['index'], 'view' => $ats['view']]; }
public function buildBaseQuery() { $query = parent::buildBaseQuery(); $query->andWhere(['is_deleted' => 0]); return $query; }
public function actions() { $ats = parent::actions(); return ['index' => $ats['index'], 'create' => $ats['create']]; }