Answers for "laravel 8 how to build parent and child relationship in same table"

PHP
1

laravel parent child same table

public function parent()
    {
        return $this->belongsTo('App\CourseModule','parent_id')->where('parent_id',0);
    }

    public function children()
    {
        return $this->hasMany('App\CourseModule','parent_id');
    }
Posted by: Guest on October-29-2020

Code answers related to "laravel 8 how to build parent and child relationship in same table"

Browse Popular Code Answers by Language