I have some relations in my DB and heres the relatin i'm working with:
$category = Category::with('article')
->where('slug', '=', $slug)
->latest()
->paginate(12);
the articles
fetch and everything are ok, but latest method and paginate won't work!
it means the collection is ascending & not paginated.
any ideas? thanks.