intersect method on the $request object doesn't work laravel 5.5???
it's was work with 5.4, now not ,what happens?
example
protected function getFilters(){
return $this->request->intersect($this->filters);
}
OK, I solved it,
before
protected function getFilters(){
return $this->request->intersect($this->filters);
}
after
protected function getFilters(){
return $this->request->only($this->filters);
}
now it;s work
This is a good solution
Most helpful comment
OK, I solved it,
before
protected function getFilters(){
return $this->request->intersect($this->filters);
}
after
protected function getFilters(){
return $this->request->only($this->filters);
}
now it;s work