获取额外数据透视表列 laravel 的值
2022-08-30 08:22:33
我有一个phone_models,phone_problems和一个phone_model_phone_problem数据透视表。数据透视表有一个额外的列“价格”。
手机型号:
class PhoneModel extends \Eloquent
{
public function problems()
{
return $this->belongsToMany('RL\Phones\Entities\PhoneProblem')->withPivot('price');
}
}
电话问题:
class PhoneProblem extends \Eloquent
{
public function models()
{
return $this->belongsToMany('PhoneModel')->withPivot('price');
}
}
我试图做的是获得具有特定问题的特定手机的价格。
这就是我现在拥有它的方式,但我觉得Laravel有一个内置的Eloquent功能,我找不到以更简单的方式做到这一点:
$model = $this->phoneService->getModelFromSlug($model_slug);
$problem = $this->phoneService->getProblemFromSlug($problem_slug);
所有这一切都是从他们的slug中选择特定的模型和问题。
然后我所做的就是使用这些凭据,我得到的价格是这样的:
$row = DB::table('phone_model_phone_problem')
->where('phone_model_id', '=', $model->id)
->where('phone_problem', '=', $problem->id)
->first();
所以现在我可以得到这样的价格,但我觉得需要一种更简单,更“Laravel”的方式来做到这一点。$row->price