Advertisement
VitalyD

Untitled

Aug 28th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. $node = Category::create([
  2.     'name' => 'Foo',
  3.  
  4.     'children' => [
  5.         [
  6.             'name' => 'Bar',
  7.  
  8.             'children' => [
  9.                 [ 'name' => 'Baz' ],
  10.             ],
  11.         ],
  12.     ],
  13. ]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement