還是關於laravel 5.4很困惑,因爲我是新來這檢查數據,我想從記錄表誰得到了相同的年和當然獲取數據的行與用戶。Laravel 5.4 - 從另一個表
$show = Profile::where('userid','=',$id)->first();
$check1 = Record::where([['year','=',$show->year],['course','=',$show->course]])->get();
它成功運行,並能夠獲得人員名單。現在,我接下來要做的是檢查這些人員列表($ check1的結果)是否存在於名爲Fbuser的另一個表上。試着這樣做,
$check2 = Fbuser::where([['first_name','=',$check1->firstname],['last_name','=',$check1->lastname]]);
if ($check2 === null) {
return 'recommend';
} else {
return 'exit';
}
但它給了我一個錯誤
(1/1)異常 屬性[名字]不會對這種集合實例存在。
有沒有什麼辦法可以解決這個問題? 在此先感謝。
什麼是表Fbuser字段名稱? –