Guest User

Untitled

a guest
Feb 17th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public function childs()
  2. {
  3. return $this->hasMany(Category::class, 'parent_id');
  4. }
  5.  
  6. $cats = Category::with('childs')->get();
  7.  
  8. $cats = Category:with('childs')->with('childs')... ->get();
Add Comment
Please, Sign In to add comment