我有一个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);
这一切都是从他们的中选择特定的模型和问题。
那么我要做的就是凭这些凭证获得价格,如下所示:
$row = DB::table('phone_model_phone_problem') ->where('phone_model_id', '=', $model->id) ->where('phone_problem', '=', $problem->id) ->first();
所以现在我可以得到这样的价格,$row->price但是我觉得需要一种更简单,更“ Laravel”的方式来做到这一点。
$row->price
当对Eloquent使用“多对多”关系时,结果模型将自动获得pivot分配的属性。通过该属性,您可以访问数据透视表列。尽管默认情况下,枢轴对象中只有键。为了将列也放入其中,您需要在定义关系时指定它们:
pivot
return $this->belongsToMany('Role')->withPivot('foo', 'bar');
官方文件
如果您需要更多与Eloquent配置关系的帮助,请告诉我。
编辑
要查询价格,请执行此操作
$model->problems()->where('phone_problem', $problem->id)->first()->pivot->price