Select Modifier
Retrieves the selected values of a given array.
games:
  -
    feeling: love
    title: Dominion
    publisher: Rio Grande Games
  -
    feeling: love
    title: Netrunner
    publisher: Wizards of the Coast
  -
    feeling: hate
    title: Chutes and Ladders
    publisher: Unknown
{{ games | select('title', 'publisher') }}
{{ Statamic::modify($games)->select(['title', 'published'])->fetch() }}
-
    title: Dominion
    publisher: Rio Grande Games
-
    title: Netrunner
    publisher: Wizards of the Coast
-
    title: Chutes and Ladders
    publisher: Unknown
Docs Feedback
Submit improvements, related content, or suggestions through Github.
Betterify this page