我正通过关系检索与我的batsmans个人资料相关的评论。无论如何,我可以通过最新的评论来订购,还是我必须在控制器中做到这一点?
当前检索评论。
@foreach($batsmen->comments as $comments)
<p> $comments->comment</p>
<p> Posted by: $comments->user_id</p>
@endforeach
答案 0 :(得分:0)
如果它是一个雄辩的对象,你可以这样做。
@foreach($batsmen->comments->orderBy('id', 'DESC')->get() as $comments)
<p> $comments->comment</p>
<p> Posted by: $comments->user_id</p>
@endforeach