$data = Category::join('articles', function ($join) {
$join->on('categories.id', 'articles.category_id')
->where('categories.type', 'news')
->where('articles.status', '1');
})->get()->sortByDesc('updated_at')->paginate(5);
我有 2 个变量都查询同一个模型。我现在想将这两个单独的数据集合并到一个名为 $articles 的变量中,然后对其进行分页。