/**
  * @param $name
  * @return mixed
  */
 public function destroy($name)
 {
     $entity = Entity::find($name);
     $this->authorize('remove', $entity);
     $entity->delete();
     $this->resetSuperAdminPermissions();
     return redirect()->route('genealabs.laravel-governor.entities.index');
 }