public function run()
 {
     $root = Category::create(['name' => 'test_root', 'slug' => 'test_root']);
     $root->save();
     $child = Category::create(['name' => 'test', 'slug' => 'test']);
     $child->save();
     $child->makeChildOf($root);
 }