starNewsRepository = $starNewsRepository; } //星球新闻列表 public function index(Request $request) { $starNews = $this->starNewsRepository->index($request->all()); if ($starNews){ return $this->jsonSuccess($starNews); }else { return $this->jsonError('没有找到相关新闻'); } } }