/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $roles = Role::paginate(15);
     return view('admin.roles.index', compact('roles'));
 }