slave_db; } /** * {@inheritdoc} */ public function attributeLabels() { return [ 'id' => 'ID', 'date' => 'Date', 'section' => 'Section', 'error_text' => 'Error Text', ]; } public static function addlog($section,$text) { $logsModel = new Logs(); $logsModel->section = $section; $logsModel->error_text = $text; $logsModel->save(); //var_dump($logsModel->errors); } }