Cannot get events filtering by labels

Hey guys, I’m trying to filter some events by their labels. When I’m doing this with pods it’s working, but not with events.

kubectl get pods -l env=development (GIVES ME RESULT)
kubectl get events -l env=development (GIVES ME: No resources found in default namespace)

Can you guys help me with the difference?

Cluster information:

Kubernetes version: minikube version: v1.17.1

use --field-selector instead.

Maybe this will work.
kubectl get events -owide | grep <input>