Laravel - 查询顶级类别

时间:2016-03-21 09:54:06

标签: eloquent laravel-5.1

所以我有类别,例如,像这样:

新闻(热门类别)

Sports (sub category)
World (sub category)
Local (sub category)
etc.

这些文章都属于某些SUB类别 (但没有属于枢轴中顶级类别的记录)。

article_id 23 - > category_id 8(它的多对多,带有数据透视表)

文章还有published_at,status,hits fields。

现在我需要:

get Articles
that belong to any of the sub categories of the Top News category,
where('status', 1),
where('published_at', '<=', Carbon::now()),
orderBy('published_at', 'desc'),

我不确定我是否足够清楚,我希望它足够清楚。

有什么建议吗?

0 个答案:

没有答案