Number
Number Input is a single-lined field where you can enter a number. Its also shows up and down arrows to change the value as provided by HTML number input rendered in browser.
note
The following examples use a field named number_field
. This should be replaced with your field name.
- Twig
- Blade
{{ entry.number_field }}
{{ $entry->number_field }}
Parameters
- Twig
- Blade
{{ entry.number_field.parameters({decimal_places: 2}) }}
{{ $entry->number_field->parameters(['decimal_places' => 2]) }}
info
See the ExpressionEngine Documentation for more information on the Number fieldtype