/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     return Role::orderby('name')->get();
 }
 public function getGroup()
 {
     return Role::orderby('name')->get();
 }