Answers for "laravel parent child tree within 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 parent child tree within same table"

Browse Popular Code Answers by Language