拉拉维尔订单通过一段关系

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排序


答案 1

可以扩展与查询函数的关系:

<?php
public function comments()
{
    return $this->hasMany('Comment')->orderBy('column');
}

[评论后编辑]

<?php
class User
{
    public function comments()
    {
        return $this->hasMany('Comment');
    }
}

class Controller
{
    public function index()
    {
        $column = Input::get('orderBy', 'defaultColumn');
        $comments = User::find(1)->comments()->orderBy($column)->get();

        // use $comments in the template
    }
}

默认用户模型+简单控制器示例;当获取注释列表时,只需根据输入::get()应用 orderBy()。(请务必做一些输入检查;))


答案 2

我相信你也可以做到:

$sortDirection = 'desc';

$user->with(['comments' => function ($query) use ($sortDirection) {
    $query->orderBy('column', $sortDirection);
}]);

这允许您对每个相关的注释记录运行任意逻辑。你可以在那里有这样的东西:

$query->where('timestamp', '<', $someTime)->orderBy('timestamp', $sortDirection);

推荐