Answers for "make parent child array from same table in laravel"

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 "make parent child array from same table in laravel"

Browse Popular Code Answers by Language