是否可以直接在模型中修改/操纵来自Relation的Collection结果。
我有一个附件模型,它有很多父模型(新闻,事件,页面,用户...),我想返回一个包含3个子集合的集合。
请求:
$attachments = News::find(1)->attachments()->get();
结果:
Collection =>
Collection => (Image, Image, ...),
Collection => (Word, ...),
Collection => (Video, ...)
我可以在Controller中对其进行过滤,但是可以在模型中修改结果集合吗?