repository = $repository; } /** * @return mixed * @author Qinii */ public function index() { dump(1);die; $where = $this->request->params(['keyword', 'type', 'status','realname',['is_del',0]]); [$page, $limit] = $this->getPage(); return app('json')->success($this->repository->getList($where, $page, $limit)); } }