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?
Solution:Jump to 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.
2 Replies
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.
Yea I was really out of touch yesterday. Obviously modifyQueryUsing was what I did now. Thanks!