class Avo::Loaders::FieldsLoader

def method_missing(method, *args, &block)

def method_missing(method, *args, &block)
  matched_field = Avo.field_manager.find do |field|
    field[:name].to_s == method.to_s
  end
  if matched_field.present? && matched_field[:class].present?
    klass = matched_field[:class]
    field = if block.present?
      klass.new(args[0], **args[1] || {}, &block)
    else
      klass.new(args[0], **args[1] || {})
    end
    add_field field
  end
end