コード例 #1
0
 /**
  * Display a listing of the Role.
  * GET|HEAD /roles
  *
  * @return Response
  */
 public function index()
 {
     $roles = $this->roleRepository->all();
     return $this->sendResponse($roles->toArray(), "Roles retrieved successfully");
 }