这是多对多关系,其中客户端属于多个组,并且组具有多个客户端。 我想获取所有尚未属于某个组的客户端,并将其传递给视图。
组模型:
public function clients() {
return $this->belongsToMany('App\Models\Client', 'client_group', 'group_id', 'client_id');
}
客户端模型:
public function documents() {
return $this->belongsToMany('App\Models\Document', 'client_document', 'client_id', 'document_id');
}
GroupsController.php
public function edit($id)
{
$group = Group::find($id);
$clients = Client::all()->where('user_id', Auth::user()->id);
return view('backend.groups.edit', compact('group', 'id', 'clients'));
}
答案 0 :(得分:1)
如果我的理解正确,则您希望不属于组的客户端。本质上,您需要查询关系缺失:
$clients = App\Client::doesntHave('groups')->get();
如果您想添加其他where子句:
use Illuminate\Database\Eloquent\Builder;
...
$clients = App\Client::whereDoesntHave('groups', function (Builder $query) {
$query->where('active', '=', true);
})->get();
有关更多信息,请参见Querying Relations