Hi,
I want to use rapyd data filter, but at first I need to proccess filtered data in my controller before passing it to view.
My code:
`public function index()
{
$user = auth()->user();
But in controller this line $tasks = $filter->query->get(); doesnt return filtered data. It returns all data. I noticed that it works only when the filter view is rendered. So is it possible to achieve it in controller?
Hi, I want to use rapyd data filter, but at first I need to proccess filtered data in my controller before passing it to view. My code: `public function index() { $user = auth()->user();
}`
But in controller this line $tasks = $filter->query->get(); doesnt return filtered data. It returns all data. I noticed that it works only when the filter view is rendered. So is it possible to achieve it in controller?