Am I missing something with the Laravel integration?
I am trying to create a simple report with a list of users and user role.
I would expect I can use "Users::with('role')" but this only provides a list of all users.
If I user "Users::find(1)" I would expect to get the user where ID = 1 but I get all users.
Is the integration not really there? What is the best way to leverage KoopReport with Laravel?
Joe