/** * Index Projects * * @returns Illuminate response (JSON list of projects) */ public function index() { return $this->pageRepository->index(new Page()); }
/** * Index Projects * * @returns Illuminate response (JSON list of projects) */ public function index() { return $this->projectRepository->index(new Project()); }
/** * Index Tags * * @returns Illuminate response (JSON list of projects) */ public function index() { return $this->tagRepository->index(new Tag()); }
/** * Index Projects * * @returns Illuminate response (JSON list of projects) */ public function index() { return $this->restfulRepository->index(new Section()); }