コード例 #1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index(Request $request)
 {
     return $this->service->all($request->query->get('limit'));
 }
コード例 #2
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $userId = Authorizer::getResourceOwnerId();
     return $this->service->all($userId);
 }
コード例 #3
0
 /**
  * Display a listing of the resource.
  *
  * @param ProjectRepository $repository
  * @return Response
  */
 public function index()
 {
     return $this->service->all();
 }
コード例 #4
0
 public function all(Request $request)
 {
     return $this->service->all();
 }