Query string params such as ?filter[groupId] always fail validation because retrieving them via $this->request->query->has and $this->request->query->get doesn't work.
Instead I think the parameter names need to become dot notated, e.g.
filter[groupId] => filter.groupId
So that they can be retrieved via the Arr::get and Arr:has methods
Query string params such as
?filter[groupId]
always fail validation because retrieving them via$this->request->query->has
and$this->request->query->get
doesn't work.Instead I think the parameter names need to become dot notated, e.g.
filter[groupId] => filter.groupId
So that they can be retrieved via the
Arr::get
andArr:has
methodsThis issue should be fixed by: #129