listAll() public method

List all role.
public listAll ( ) : Illuminate\Database\Eloquent\Collection
return Illuminate\Database\Eloquent\Collection
Ejemplo n.º 1
0
 /**
  * Get all roles.
  *
  * /admin/roles get
  *
  * @return \Illuminate\Http\JsonResponse
  */
 public function index()
 {
     $roles = $this->roles->listAll();
     return $this->responseJson(compact('roles'));
 }