这是我目前使用的结构
模型用户:
class User extends Authenticatable implements MustVerifyEmail
public function groups()
{
return $this->belongsToMany('App\Group')
->withTimestamps();
}
模型组:
class Group extends Model
public function users() {
return $this->belongsToMany('App\User')
->withTimestamps();
}
数据透视表 :
Schema::create('group_user', function (Blueprint $table) {
$table->integer('group_id');
$table->integer('user_id');
$table->integer('role_id')->nullable();
$table->timestamps();
});
我想获取当前用户的同一组中的所有用户并且不返回重复用户(一个用户可以在多个组中)。理想的功能是:
$user->contacts()
// Return an object with (unique) contacts of all current user groups
AND
$user->groupContacts($group)
// Witch is the same as $group->users
// Return an object with all the users of the current group
我正在处理的不是功能性功能(Model User.php):
public function contacts()
{
$groups = $this->groups;
$contacts = new \stdClass();
foreach ($groups as $key => $group) :
$contacts->$key = $group->users;
endforeach;
return $contacts;
}
我真的不是表格结构方面的专家,所以如果有更好的方法来做到这一点,我只是在这个个人项目的开始,所以没有什么是一成不变的。
可选的东西:
- 从列表中排除当前用户
- 使用数据透视表中的角色
- 使用软删除