belongsTo(Category::class); } public function products() { return $this->hasMany(Product::class); } public function subSubCategories() { return $this->hasMany(SubSubCategory::class); } }