SASS Versions of
- Fontawesome 5
- Bootstrap 4
in Phoenix 1.3 and 1.4 via Webpack
SASS Versions of
in Phoenix 1.3 and 1.4 via Webpack
@doc """ | |
Validate each array element with validator | |
Examples | |
iex> changeset | |
...> |> validate_each(:emails, &validate_email) | |
...> |> validate_each(:phones, &validate_format(&1, &2, ~r/\d+/)) | |
...> |> validate_each(:phones, &validate_length/3, is: 4) | |
""" | |
def validate_each(changeset, field, validator, opts) do |