订购通过关系检索的评论

时间:2017-09-05 15:42:22

标签: laravel laravel-5 eloquent laravel-5.4

我正通过关系检索与我的batsmans个人资料相关的评论。无论如何,我可以通过最新的评论来订购,还是我必须在控制器中做到这一点?

当前检索评论。

@foreach($batsmen->comments as $comments)
<p> $comments->comment</p>
<p> Posted by: $comments->user_id</p>
@endforeach

1 个答案:

答案 0 :(得分:0)

如果它是一个雄辩的对象,你可以这样做。

@foreach($batsmen->comments->orderBy('id', 'DESC')->get() as $comments)
<p> $comments->comment</p>
<p> Posted by: $comments->user_id</p>
@endforeach