Why is this not working?
Article::with(\'category\')->find($ids)
I got a Array to String Conversion Exception.
But if i split t
This will give you the results based on an array of IDs in Laravel 4
Article::whereIn('id', $ids)->with('category')->get();