使用了关联关系hasOne()处理表单之间从属关系,返回null
详见代码,在使用find查找到cpe对象后,调用第一个DeviceInfo返回对应对象,调用MgtServer确返回null。是不是我忽略了什么呢?
public function DeviceInfo()
{
return $this->hasOne('App\CpeDeviceInfo', 'cpe_id', 'id');
}
public function MgtServer()
{
return $this->hasOne('App\CpeMgtServer', 'cpe_id', 'id');
}