*/ use HasFactory, SoftDeletes; protected $fillable = [ 'code', 'name', 'width', 'height', 'setup_number', ]; /** * @return HasMany */ public function productService(): HasMany { return $this->HasMany(ProductService::class); } }