Why is this not working?
Article::with(\'category\')->find($ids)
I got a Array to String Conversion Exception.
But if i split t
Just for the posterity... other way you can do this is:
Article::with('category')->whereIn('id', $ids)->get();
This should be better (more performant), because it's leaving the query to the database manager