0
我有以下型號Laravel5預先加載不工作
class ParentModel extends Model
{
public function children()
{
return $this->hasMany('App\Model\Student', 'parent_id');
}
}
class Student extends Model
{
}
當我使用ParentModel::find(1)->children
,它給出正確的結果。 但是,當我使用ParentModel::with('children')->find(1)
時,結果數組包含一個值爲空數組的children
鍵。