Laravel:根据Eloquent关系获取用户

时间:2016-10-01 09:24:05

标签: php mysql laravel laravel-5 eloquent

我有一个User模型,其中包含属性type和其他属性。类型用于标识父母孩子

家长和孩子(学生)有多对多关系。 学生也属于一个或多个(模型Group)。

用户模型

/**
 * Filter the scope of users to student type.
 *
 * @param $query
 */
public function scopeStudent($query){
    $query->where('type', '=', 'std');
}

/**
 * Filter the scope of users to parent type.
 *
 * @param $query
 */
public function scopeParent($query){
    $query->where('type', '=', 'prt');
}

/**
 * List of groups the user is associated with.
 *
 * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
 */
public function groups(){
    return $this->belongsToMany('\App\Group', 'group_user_assoc')
                ->withTimestamps();
}

/**
 * List of students associated with the user(parent).
 *
 * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
 */
public function children(){
    return $this->belongsToMany('\App\User', 'student_parent_assoc', 'parent_id', 'student_id')
                ->withPivot('relation');
}

/**
 * List of parents associated with the user(student).
 *
 * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
 */
public function parents(){
    return $this->BelongsToMany('\App\User', 'student_parent_assoc', 'student_id', 'parent_id')
                ->withPivot('relation');
}

上述关系正常运作。

以下是我的关联表。

student_parent_assoc
----------------------
+------------+------------------+------+-----+
| Field      | Type             | Null | Key |
+------------+------------------+------+-----+
| student_id | int(10) unsigned | NO   | PRI |
| parent_id  | int(10) unsigned | NO   | PRI |
| relation   | varchar(25)      | YES  |     |
+------------+------------------+------+-----+

group_user_assoc
----------------------
+------------+------------------+------+-----+
| Field      | Type             | Null | Key |
+------------+------------------+------+-----+
| group_id   | int(10) unsigned | NO   | MUL |
| user_id    | int(10) unsigned | NO   | MUL |
| created_at | timestamp        | NO   |     |
| updated_at | timestamp        | NO   |     |
+------------+------------------+------+-----+

我需要找到不属于任何群体的学生和他们的父母。我设法找到了这样的学生

$students = User::student()
                ->whereDoesntHave('groups')
                ->get();

问题: 现在我想找到这些学生的父母。但我无法建立一个雄辩的查询。我该怎么做?

注意:我可以从上面的查询中收集学生,并运行foreach循环让他们的父母这样

$parents = new Collection;
foreach($students as $student) {
    foreach($student->parents as $parent) {
        $parents->push($parent);
    }
}
$parents = $parents->unique();

但我需要一个Builder对象,而不是Collection因为Datatables server side processingYajra/datatables一起使用。

2 个答案:

答案 0 :(得分:2)

用于加载parents关系,您需要使用预先加载。 2种方法是with($relation)load($relation)。区别在于您已经让父母已经使用结果对象或稍后加载它们。

因此,在您的示例中,您可以与父母一起使用('父母')或者如果您想修改结果集:

User::student()
->with(['parents' => function ($parentsQueryBuilder) {
    $parentsQueryBuilder->where('condition', 1)->whereIn('condition2', [1,2,3]);
}])
->whereDoesntHave('groups')
->get();

然后你会让你的父母处于一种关系中,但是性能会很高,因为你只需要花一个查询就可以将父母加载到你的对象中。然后你可以在一个集合中根据需要采取它们:

$students->pluck('parents')->flatten()->unique();

或示例2 - 如果您只需要与所选学生相关的所有家长 - 几乎与急切加载相同:

$studentIds = $students->modeKeys();
User::parent()->whereHas('children', function ($query) use($studentIds) {
    $query->whereIn('id', $studentIds);
})->get();

<强>已更新

为了获得父母的建设者,试试这个:

/** BelongsToMany   <- relation query builder */    
$relation = with(new User)->query()->getRelation('parents');

$relation->addEagerConstraints($students->all());

这将为您创建BelongsToMany关系的新实例,并将whereIn($ studentIds)的约束附加到它。然后点击->get(),你必须收到相关的$ parents

答案 1 :(得分:0)

好吧,我设法解决了这个问题

$students = User::student()
                ->with('parents')
                ->whereDoesntHave('groups')
                ->has('parents') //to get only those students having parents
                ->get();

$parent_ids = array();

// get ids of all parents
foreach ($students as $student) {
    foreach ($student->parents as $parent) {
        $parent_ids[] = $parent->user_id;
    }
}

// build the query
$users = User::parent()
             ->with('children')
             ->whereIn('user_id', $parent_ids);

如果有人能提出更好更简单的方法,我仍然会喜欢它。