Laravel,修改关系结果

时间:2014-07-24 22:24:04

标签: collections laravel model eloquent

是否可以直接在模型中修改/操纵来自Relation的Collection结果。

我有一个附件模型,它有很多父模型(新闻,事件,页面,用户...),我想返回一个包含3个子集合的集合。

请求:

$attachments = News::find(1)->attachments()->get();

结果:

Collection =>
   Collection => (Image, Image, ...),
   Collection => (Word, ...),
   Collection => (Video, ...)

我可以在Controller中对其进行过滤,但是可以在模型中修改结果集合吗?

0 个答案:

没有答案