我正面臨一個問題,至於爲什麼關係沒有連接。RelationNotFoundException Laravel
vendor.php
class Vendor extends Model
{
public function internets()
{
return $this->hasMany('App\Internet');
}
}
internets.php
class Internet extends Model
{
protected $with=['vendor','coba'];
public function vendor()
{
return $this->belongTo('App\Vendor');
}
}
任何一個能幫助我嗎?
你是否收到任何錯誤? –
請在你的控制器中顯示你的數據庫結構 – bhill77
添加'使用App \ Internet;'和/或'使用App \ Vendor;' – Demonyowh