Number Type

Overview

The number field type stores numeric values including floating point numbers. If you need to support fixed-precision numbers, check out the decimal field type.

// streams/example.json
"fields": {
    "price": {
        "type": "number"
    }
}

Configuration

@todo Generate config options from class::configuration

Data Structure

{
    "price": 89.95
}

Basic value access displays the stored value:

@verbatim// Basic access
{{ $entry->price }}@endverbatim

Decorator Usage

Boolean types also provide decorated values.

@verbatim// Decorated value
@if ($entry->price()->isOdd())
    // ...
@endif@endverbatim

Methods

@todo Generate methods from @docs