2 回答
TA贡献1843条经验 获得超7个赞
如果您没有belongsToMany在Instructor模型中建立关系,DriverLicenseType我建议您将其放入:
public function licenseTypes()
{
return $this->belongsToMany(DriverLicenseType::class, 'instructors_license_types', 'instructor_id', 'driver_license_type_id');
}
$user = User::find(1);
$licenseTypes = $user->instructor->licenseTypes->pluck('type')->unique();
或者,如果您需要$licenseTypes采用问题中的格式,您可以执行以下操作:
$licenseTypes = $user->instructor->licenseTypes->map(function ($item) {
return [$item->id, $item->type];
});
TA贡献1982条经验 获得超2个赞
通过添加以下函数,您可以直接从 Instructors 模型中获取 driver_license_types:
//PathToModel\Instructor.php
public function license_types()
{
return $this->belongsToMany('PathToModel\LicenseTypes', 'instructors_license_types');
}
还将其添加到 LicenseType 模型中:
//PathToModel\LicenseTypes.php
public function instructors()
{
return $this->belongsToMany('PathToModel\Instructors', 'instructors_license_types');
}
通过这种方式,您将能够删除代码中的 foreach 语句之一:
$user = User::find($id);
if($user->instructor){
$tmp = [];
foreach ($user->instructor->license_types as $data) {
array_push($tmp, [$data->id, $data->type]);
}
$user->types = $tmp;
}
这只是跳过数据透视表(instructos_license_types),有关这方面的更多信息,您可以在此处查看文档。
- 2 回答
- 0 关注
- 153 浏览
添加回答
举报