Manual filter after query in table
Is it possible to perform a manual query after loading the models from the db?
Something like this:
I know this hasn't the best performance.
Something like this:
I know this hasn't the best performance.
foreach ($table->getAllRecords() as $record) {
if ($record->customFunctionOrFilter()){
unset($record);
}
}
return $table
->columns([...])