The datetime
field type stores both date and time.
// streams/example.json
"fields": {
"starts_at": {
"type": "datetime"
}
}
@todo Generate config options from class::configuration
// streams/example.json
"fields": {
"starts_at": {
"type": "datetime",
"config": {
"default": "now"
}
}
}
{
"starts_at": "2021-01-01 09:30:00"
}
Basic value access returns the stored value:
@verbatim// Basic access
{{ $entry->starts_at }}@endverbatim
Datetime types also provide decorated values which returns a Carbon instance.
@verbatim// Decorated value
{{ $entry->startsAt()->diffForHumans() }}@endverbatim
@todo Generate methods from @docs
A blank TALL-stack Laravel project with Streams.
The fundamental features and utilities offered by the Streams platform.
A universal and extensible RESTful API for Streams.
Extensible, user-friendly, and performant control panel, components, and services.
Dev tooling for Laravel Streams.