拉拉维尔订单通过一段关系
2022-08-30 06:33:51
我正在循环访问特定帖子的作者发布的所有评论。
foreach($post->user->comments as $comment)
{
echo "<li>" . $comment->title . " (" . $comment->post->id . ")</li>";
}
这给了我
I love this post (3)
This is a comment (5)
This is the second Comment (3)
我如何按post_id排序,以便上面的列表按3,3,5排序