0
我有這個疑問的輔助方法WhereBetween在我的感覺模型許多一對多的關係
public function asAroma()
{
return $this->belongsToMany('App\SensoryEvaluationForm')->wherePivot('sensory_type', '=', 2);
}
我怎樣才能查詢到這個? 我像這樣使用
$cs = App\Sensory::first();
$cs->asAroma()->whereBetween('created_at', [$startingDate, $endingDate])->get();
它什麼都沒有返回。我認爲用關係構建查詢有不同的方式嗎?
我想要做的是添加wherebetween過濾器到結果關係。
我經常看到這些答案,它的工作,但我已經找到了更簡單的方法。檢查我的答案。謝謝你的迴應:) – Wreigh
新招,謝謝:) – wonyeouuu
是啊,我只是試過,並且自己覺得它很有用XD – Wreigh