Change Models loaded in Table
Is there any hook that can be run after a query executes so that there is the possibility to for example load additional data without having a n+1 problem in the table builder?
I don't want to Join the data via modifyQueryUsing. Is there any different approach?
I don't want to Join the data via modifyQueryUsing. Is there any different approach?
Solution
What are you actually trying to do.? modifyQueryUsing() is exactly where should be doing the overriding. Or you could go further up the chain and modify the base query with the query() modifier.