這裏是我的口才代碼:
class TestType extends Model
{
protected $with = ['parent', 'children'];
public function user(){
return $this->belongsTo('App\User');
}
public function parent(){
return $this->belongsTo('App\Models\TestType', 'parent_id', 'id');
}
public function children(){
return $this->hasMany('App\Models\TestType', 'parent_id', 'id');
}
}
雄辯有孩子和家長的自稱。這,只要我孩子從$刪除與
返回HTTP錯誤500.它的工作原理也適用時,我只是從像控制器調用它:
$testType = TestType::where('id', 1)->first();
return $testType->children;
你能幫助我嗎?
第1步,總是在你甚至問別人:你去檢查服務器的錯誤日誌。 – CBroe
'PHP致命錯誤:134217728字節允許的內存大小已耗盡... \ vendor \ doctrine \ dbal \ lib \ Doctrine \ DBAL \ Driver \ PDOStatement.php在91行# –
@LevanTetemadze您有多少條記錄? –