String Type

Overview

The string field type stores a basic string.

// streams/example.json
"fields": {
    "name": {
        "type": "string"
    }
}

Data Structure

{
    "name": "John"
}

Basic value access displays encrypted value:

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

Decorator Usage

Strings also provide decorated values.

@verbatim// Decorated value
{{ implode('; ', $entry->example()->lines()) }}
@endverbatim

Methods

@todo Generate methods from @docs

Configuration

@todo Generate config options from class::configuration