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

Did you find this page helpful?