我想從數據透視表中獲取數據(我有第三列)。但它返回空數組。當我做DD()我得到這個數據透視表返回空數組
Collection {#323 ▼
#items: []
}
$a = new Subject();
$authorized_users = $a->users()->get(['auth_teacher']);
車型
主題
public function users()
{
return $this->belongsToMany('App\User')->withPivot('auth_teacher')->withTimestamps();
}
用戶
public function subjects()
{
return $this->belongsToMany('App\Subject')->withPivot('auth_teacher')->withTimestamps();
}
編輯:錯別字列名。我將其更改爲正確的,但字符串仍然是空的
我不明白爲什麼你想從'Subject'模型獲取一個'subject_id',可以你請妥善闡述你的問題! –
這裏我糾正它(它不subject_id是auth_teacher – OunknownO