public function destroy($id)
 {
     Project::destroy($id);
     Cache::store('project')->flush();
     return ['error' => 0, 'message' => '删除成功!'];
 }