コード例 #1
0
ファイル: PageController.php プロジェクト: dan-powell/shop
 /**
  * Index Projects
  *
  * @returns Illuminate response (JSON list of projects)
  */
 public function index()
 {
     return $this->pageRepository->index(new Page());
 }
コード例 #2
0
 /**
  * Index Projects
  *
  * @returns Illuminate response (JSON list of projects)
  */
 public function index()
 {
     return $this->projectRepository->index(new Project());
 }
コード例 #3
0
 /**
  * Index Tags
  *
  * @returns Illuminate response (JSON list of projects)
  */
 public function index()
 {
     return $this->tagRepository->index(new Tag());
 }
コード例 #4
0
 /**
  * Index Projects
  *
  * @returns Illuminate response (JSON list of projects)
  */
 public function index()
 {
     return $this->restfulRepository->index(new Section());
 }