Radical Design Course by Jack McDade

From the creator of Statamic

Learn how to make your websites standout and be remembered.

Taking your approach on designing things actually makes it fun, more natural, and overall easier.

— Dominik, Developer

to_json Modifier

Converts any variable into JSON.

stats:
- player: Luke Skywalker
score: 750
- player: Wedge Antilles
score: 688
- player: Jar Jar Binks
score: 1425
{{ stats | to_json }}
{!! Statamic::modify($stats)->toJson() !!}
[
{"player":"Luke Skywalker","score":750},
{"player":"Wedge Antilles","score":688},
{"player":"Jar Jar Binks","score":1425}
]
Docs feedback

Submit improvements, related content, or suggestions through Github.

Betterify this page →