Radical Design Course by Jack McDade

From the creator of Statamic

Learn how to make your websites standout and be remembered.

This course is the most refreshing take on teaching design that I've come across.

— Mikaël Sévigny, Developer

flip Modifier

Swaps the keys with their corresponding values. The old switcharoo.

favorites:
food: burger
drink: soda
{{ favorites | json }}
{{ favorites | flip | json }}
{!! Statamic::modify($favorites)->json() !!}
{!! Statamic::modify($favorites)->flip()->json() !!}
{"food":"burger","drink":"soda"}
{"burger":"food","soda":"drink"}
Docs feedback

Submit improvements, related content, or suggestions through Github.

Betterify this page →