_model = new LoggerModel(); } public function save(string $title, string $status, array $logs) { $datas = array( 'title' => $title, 'status' => $status, 'content' => implode("\n", $logs) ); return $this->_model->create($datas); } }