@@ -93,7 +93,7 @@ class DistAdminDistributor extends EloquentRepository
'category_id' => $categoryRow->id,
'title' => 'Default Product',
'sku' => 'sku001',
- 'order' => 1,
+ 'order' => 0,
'enabled' => 1,
'dist_id'=>$distId,
'content' => 'Default Content',
@@ -35,6 +35,7 @@ class DistProductCategory extends Model implements Sortable
protected $fillable = [
'name', 'parent_id', 'order','enabled','dist_id','slug','created_at', 'updated_at',// 假设已有的可填充字段
+ 'seo_title', 'seo_keywords', 'seo_description',
];